Please enable JavaScript to view this site.

Codolex

Decode a string with a decoding protocol

uses System.NetEncoding.TNetEncoding.Decode

 

Decode

Activity properties

 

begin

var DecodedString: string;

var Encoding := TURLEncoding.Create;

try

   DecodedString := Encoding.Decode(StringToDecode);

finally

   Encoding.Free;

end;

end;

resulting code

 

Possible encoding types are:

- URL

- HTML

- Base64

© by GDK Software