This is a search engine friendly CGI program that outputs help documents.
The LufDoc (Live User Fed Documentation) comment system will be implemented soon.

PSP Help Doc Indexer System

(Version 1.4.1)


Declaration:

function url_decode(const svar: string): string;

Arguments:

svar Url-encoded string for decoding

Description:

This function returns RFC2068 (HTTP) UrlDecoded string of svar UrlEncoded one.

Returns:

Decoded value of URL-encoded string.

Usage:

s := 'Look at encoded value!';
s := url_encode(s);
writeln(s);
s := url_decode(s);
writeln(s);

See also:

url_encode.

PSP Help documents