WWW.UnEscapeURL 解码网址

static function UnEscapeURL (s : string, e : Encoding = System.Text.Encoding.UTF8) : string

Parameters参数

Returns

string - A new string with all occurrences of %xx replaced with the corresponding character.

返回string类型,一个新的字符串,其中所有的%xx都将使用对应的字符来替换。

Description描述

Decodes string from an URL-friendly format.

从一个URL格式解码字符串。

编码URL使用WWW.EscapeURL.

参考:WWW.EscapeURL.

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(WWW.UnEscapeURL("Testing%201%2C2%2C3"));
	}
}
//This will print the string "Testing 1,2,3" to the console
//这将打印出字符"Testing 1,2,3"到控制台。
print(WWW.UnEscapeURL("Testing%201%2C2%2C3"));
最后修改:2011年4月25日 Monday 9:24

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。