Decodes an encoded HTML URL string.
Decoded HTML URL string.
Display and formatting functions.
DecodeFromURL(string)
Canonicalize,EncodeForHTMLAttribute, EncodeForJavaScript, EncodeForCSS, EncodeForURL
ColdFusion (2018 release): Renamed parameter inputString to string.
ColdFusion 10: Added this function.
Parameter |
Description |
|---|---|
string |
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>
Sign in to your account