Classes 1

Class Description
Regex

Regular expression objects are used to match or decompose strings based on patterns.

Enums 1

Enum Description
RegexError

Regex expression error codes.

Functions 5

Function Description
CompileRegex

Precompile a regular expression. Use this if you intend on using the same expression multiple times. Pass the regex handle returned here to MatchRegex to check for matches.

GetRegexSubString

Returns a matched substring from a regex handle. Substring ids start at 0 and end at captures-1, where captures is the number returned by MatchRegex.

MatchRegex

Matches a string against a pre-compiled regular expression pattern.

SimpleRegexMatch

Matches a string against a regular expression pattern.

__ext_regex_SetNTVOptional