Welcome › Forums › Aliases › urldecode – Decodes characters in a website address Tagged: sockets alias html This topic has 0 replies, 1 voice, and was last updated 8 years, 11 months ago by bleepy. Viewing 0 reply threads Author Posts February 9, 2016 at 19:30 #444 bleepyKeymaster Description: Converts a string from URL-safe to ‘normal’ characters, e.g. %20 becomes a space, etc. Usage: $urldecode(string) Example: $urldecode(http%3A%2F%2Fwww%2Edalnethd%2Eorg%2Findex%2Ephp) Code: alias urldecode { return $replace($regsubex($1-,/%(\w\w)/g,$chr($iif($base(\t,16,10) != 32,$v1,1))),$chr(1),$chr(32)) } Author Posts Viewing 0 reply threads The forum ‘Aliases’ is closed to new topics and replies.