percentunescape(
TEXT
)
The percentunescape( function decodes text that contains percent encoding.
Parameters
This function has one parameter:
text – is the item of text that you want to decode.
Description
The percentunescape( function decodes text that contains percent encoding.
percentunescape("red%2C%20green%2C%20blue") ☞ red, green, blue
See Also
- percentescape( -- encodes specified characters using percent encoding.
- strip( -- strips off leading and trailing blanks and other whitespace (carriage returns, tabs, etc.)
- stripchar( -- extracts characters you don't want from a text item.
- stripdiacriticals( -- strips diacritical marks from text.
- stripprintable( -- strips non-printable characters from text.
- striptoalpha( -- removes everything but alphabetic letters from a text item.
- striptonum( -- removes everything but numeric digits from a text item.
- urldecode( -- decodes text that contains percent encoded characters.
- urlencode( -- converts text into a legal URL (by converting spaces into `%20`). WARNING: THIS FUNCTION IS OBSOLETE.
History
10.0 | New | New in this version. |