Match

Last Updated2019-07-31
Created At2014-10-30

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

Notes

Use the regex handle passed to this function to extract matches with GetSubString().

native int Match(const char[] str, RegexError& ret = REGEX_ERROR_NONE, int offset = 0)

Parameters

const char[] str
The string to check.
RegexError& ret
Error code, if applicable.
int offset
Offset in the string to start searching from. MatchOffset returns the offset of the match.

Return Value

int Number of captures found or -1 on failure.