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

Arguments:

str Source string
arg_name Substring for removal

Description:

Removes all occurrences of substring in a string.

Returns:

Removal result or original value depending on search success.

Usage:

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

See also:

substr_istrip.

PSP Help documents