WMLScript unescapeString() Function
The unescapeString() function of WMLScript replaces escape sequences in URLs with characters.
Syntax
n = URL.unescapeString(string)
Component | Description |
---|---|
n | A string returned from the function. |
string | A string. |
Example
var a=URL.unescapeString("http%3a%2f%2fw3s.com%2wml");
Result
a = "http://w3s.com/wml"