查看“LlEscapeURL”的源代码
←
LlEscapeURL
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: string llEscapeURL( string url ); |参数= 参数:string url – A (preferably valid and unescaped URL) string. |返回值= 返回值:Returns a string that is the escaped/encoded version of url, replacing spaces with "%20" etc. The function will escape any character not in [a-zA-Z0-9] to "%xx" where "xx" is the hexadecimal value of the character in UTF-8 byte form. |注意事项=The function is not appropriate for escaping a url all at once, because the ":" after the protocol, and all of the "/" characters delimiting the various parts, will be escaped. Instead, build the url in parts; escaping parts of the path and query string arguments as needed. |示例= 示例1 <pre> string str = "http://wiki.secondlife.com/wiki/LSL Portal"; default { state_entry() { llOwnerSay("Plain string:\n\t" + str); // output: "http://wiki.secondlife.com/wiki/LSL Portal" llOwnerSay("Escaped string:\n\t" + llEscapeURL(str)); // output: "http%3A%2F%2Fwiki%2Esecondlife%2Ecom%2Fwiki%2FLSL%20Portal" llOwnerSay("Escaped string unescaped again:\n\t" + llUnescapeURL( llEscapeURL(str) )); // output: "http://wiki.secondlife.com/wiki/LSL Portal" // because escaping and unescaping are exact opposite // and unescaping an escaped string returns the original // For readability's sake it would make more sense to do: llOwnerSay("For readability's sake:\n\t" + "http://wiki.secondlife.com/wiki/" + llEscapeURL("LSL Portal")); // output: "http://wiki.secondlife.com/wiki/LSL%20Portal" } } </pre> |相关函数= [[llUnescapeURL]] }}
该页面使用的模板:
模板:LSL Header
(
查看源代码
)
模板:LSLC
(
查看源代码
)
模板:LSLGC
(
查看源代码
)
模板:Multi-lang
(
查看源代码
)
模板:函数详情
(
查看源代码
)
返回至
LlEscapeURL
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
网站首页
知识百科
编辑帮助
最近更改
工具
链入页面
相关更改
特殊页面
页面信息