URLDecode
-
function
-
The URLDecode() function returns a user-readable version of a text string that was in a URL format by substituting spaces for any "+" characters, and decoding other special characters from the %xx format to their usual appearance.
-
Examples: +
get urlDecode of \
"http%3A%2F%2Fwww.google.com%2Fsearch%3Fq%3Dice%2Bcream%26ie%3DUTF-8")
put it -- "<a href="http://www.google.com/search?q=ice" class="l0">http://www.google.com/search?q=ice</a>+cream&ie=UTF-8" -
Related: URLEncode, makeURL, extractURL