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

Arguments:

str Source string

Description:

Removes whitespace and tabs from the end of string.

Returns:

Trimmed string.

Usage:

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

See also:

str_trim_left, str_trim.

PSP Help documents