Is there a Delphi equivalent of this .net\'s method:
Url.UrlEncode()
Note I haven\'t worked with Delphi for several years now. As I
Look at indy IdURI unit, it has two static methods in the TIdURI class for Encode/Decode the URL.
uses IdURI; .. begin S := TIdURI.URLEncode(str); // S := TIdURI.URLDecode(str); end;