|
URLEncode function
String / Filename routines |
|
| acUtils
|
| function URLEncode(const Str: String): String;
|
| 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".
|
| URLDecode function.
|