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

Arguments:

pattern Regular expression pattern
str Input string

Description:

This function checks if input string matches regular expression pattern.

Returns:

TRUE on positive match, FALSE on negative.

Usage:

if regexp_match('/foo/i', s) then
	// Some actions
else
	// Some actions

PSP Help documents