Description
Decodes an encoded HTML URL string.
Returns
Decoded HTML URL string.
Category
Display and formatting functions.
Decodes an encoded HTML URL string.
Decoded HTML URL string.
Display and formatting functions.
DecodeFromURL(String encodedinput)
Canonicalize,EncodeForHTMLAttribute, EncodeForJavaScript, EncodeForCSS, EncodeForURL
ColdFusion 10: Added this function.
Parameter |
Description |
---|---|
inputString |
Required. The encoded URL string to decode. |
<cfset string = "http://www.adobe.com/"> <cfset urlencoded = encodeforURL(string)> <cfset urldecoded = decodefromUrl(urlEncoded)> <cfoutput> String: #string# <br/> URL Encoded: #urlencoded#<br/> URL Decoded: #urldecoded#<br/> </cfoutput>