Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

DecodeUriEntities

From Catglobe Wiki
Revision as of 10:41, 26 October 2016 by Tranvuthaibinh (talk | contribs) (Created page with "Category:String_Functions {{HelpFiles}} ==== decodeUriEntities ==== Decodes an URI-encoded string and returns the decoded string. '''Syntax''' decodeUriEntities''(inp...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



decodeUriEntities

Decodes an URI-encoded string and returns the decoded string.

Syntax

decodeUriEntities(inputString)

Arguments

inputString: is a string expression.

Return type

string

Example

string encodestring = "http%3a%2f%2fwiki.catglobe.com%2findex.php%2fCategory%3aHelp_Files";
string decodestring = decodeUriEntities(encodestring);
print(decodestring);
//http://wiki.catglobe.com/index.php/Category:Help_Files