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

Arguments:

str Source string for search
sub Substring to search for

Description:

Tells whether haystack str contains needle sub. In difference from substr_exists this function is case insensitive.

Returns:

TRUE on positive search result, FALSE on negative.

Usage:

s := 'Does this haystack contain any NeedLes?';
if substr_iexists(s, 'needle') then
	writeln('Needle exists')
else
	writeln('Needle does not exist');

See also:

substr_exists, substr_count, substr_pos.

PSP Help documents