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

Arguments:

str Source string

Description:

Removes whitespace and tabs from the beginning and the end of string.

Returns:

Trimmed string.

Usage:

s := '	Clean me up!	 ';
s := str_trim(s);
writeln(s);

See also:

str_trim_left, str_trim_right.

PSP Help documents