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 substr_istrip(const str, sub: string): string;

Arguments:

str Source string
arg_name Substring for removal

Description:

Removes all occurrences of substring in a string. Case insensitive.

Returns:

Removal result or original value depending on search success.

Usage:

s := 'I am not a singer, I am NOT an artist';
s := substr_istrip(s, ' not');
writeln(s);

See also:

substr_strip.

PSP Help documents