Welcome › Forums › Aliases › urlencode – Encodes characters in a website address Tagged: alias sockets html This topic has 0 replies, 1 voice, and was last updated 9 years ago by bleepy. Viewing 0 reply threads Author Posts February 9, 2016 at 19:28 #443 bleepyKeymaster Description: Converts a string into a URL-safe string, e.g. space into %20 etc. Usage: $urlencode(string) Example: $urlencode(http://www.dalnethd.org/index.php) Code: alias urlencode { return $regsubex($1,/(\W)/g,% $+ $base($asc(\t),10,16,2)) } Author Posts Viewing 0 reply threads The forum ‘Aliases’ is closed to new topics and replies.