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 web_format(const str: string): string;

Arguments:

str Format string

Description:

Perl/PHP/PSP-style string formatting. Replaces $var_name and {$var_name} sequences with results of web_get_var('varname') calls, i.e. with PSP variables.

Returns:

Formatted string.

Usage:

web_set_var('test', 'fish');
s := 'Put some $test here, and {$test}3 too.';
s := web_format(s);

See also:

web_format_dotnet, web_printf, web_printfa, web_printfln, web_printfaln.

PSP Help documents