9 lines
124 B
Text
9 lines
124 B
Text
program URLEncoding;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
uses IdURI;
|
|
|
|
begin
|
|
Writeln(TIdURI.URLDecode('http%3A%2F%2Ffoo%20bar%2F'));
|
|
end.
|