Decodes an encoded HTML URL string.
decodeFromURL(string);
→ returns string
<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>
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.