User Guide
unescape() 991
unescape()
Availability
Flash Player 5.
Usage
unescape(x:String) : String
Parameters
x
A string with hexadecimal sequences to escape.
Returns
A string decoded from a URL-encoded parameter.
Description
Function; evaluates the parameter x as a string, decodes the string from URL-encoded format
(converting all hexadecimal sequences to ASCII characters), and returns the string.
Example
The following example shows the escape-to-unescape conversion process:
var email:String = "user@somedomain.com";
trace(email);
var escapedEmail:String = escape(email);
trace(escapedEmail);
var unescapedEmail:String = unescape(escapedEmail);
trace(unescapedEmail);
The following result is displayed in the Output panel.
user@somedomain.com
user%40somedomain%2Ecom
user@somedomain.com
CHAPTER 2
ActionScript Language Reference