vote up 3 vote down star
1

Is there a Delphi equivalent of .net's Url.UrlEncode()?

flag

69% accept rate
nice question +1, but consider accepting Mohammed's answer :) – MasterPeter Apr 23 at 14:00

4 Answers

vote up 0 vote down check

AFAIK you need to make your own.

Here are a few examples.

link|flag
Sorry, but this is not correct, check the other answers. – Gamecat Apr 23 at 12:02
I stand corrected. – Ólafur Waage Apr 23 at 17:03
vote up 17 vote down

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;
link|flag
1  
boris, come on, accept this answer, I just gave it a point for being totally helpful :) – MasterPeter Apr 23 at 13:59
vote up 1 vote down

Another option, is to use the Synapse library which has a simple URL encoding method (as well as many others) in the SynaCode unit.

uses
  SynaCode;
..
begin
  s := EncodeUrl( str );
//
  s := DecodeUrl( str );
end;
link|flag
vote up 0 vote down

In a non-dotnet environment, the Wininet unit provides access to Windows' WinHTTP encode function: InternetCanonicalizeUrl

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.