URLEncode function
String / Filename routines
Return to Introduction  Previous page  Next page
Unit
acUtils  

Declaration
function URLEncode(const Str: String): String;  

Description
The URLEncode function turns all unsafe characters like '*''#''%''<''>''+'' ' into their escape codes. So if the Str passed as parameter was "Hello World", the output string will be "Hello%20World".  

See also
URLDecode function.