Is there a Delphi equivalent of .net's Url.UrlEncode()?
|
1
|
|||
|
|
|
|
||||
|
|
|
Look at indy IdURI unit, it has two static methods in the TIdURI class for Encode/Decode the URL.
|
||||
|
|
|
Another option, is to use the Synapse library which has a simple URL encoding method (as well as many others) in the SynaCode unit.
|
||
|
|
|
|
In a non-dotnet environment, the Wininet unit provides access to Windows' WinHTTP encode function: InternetCanonicalizeUrl |
||
|
|
