Inside Coldfusion MX
| URLDecode (urlEncodedString) Description
Decodes a URL-encoded string. Example
<cfset exampleString = "This string will not break a browser"> <cfset exampleEncode = URLEncodedFormat(exampleString)> <cfoutput> <p>This is the encoded string:</p> <p>#exampleEncode#</p> <p>This is the string after it is decoded:</p> <p>#URLDecode(exampleEncode)#</p> </cfoutput> |