string.decodeFromURL()
Decodes a string that has been encoded in the URL using the encodeForURL. this function is deprecated, use function ESAPIDecode('url',...) instead.
string.decodeFromURL( )
Returns: String
This function does not take any arguments.
Examples
enc=encodeForURL('https://download.lucee.org/?type=releases');
dump(enc);
dec=enc.decodeFromURL();
dump(dec);