Regex
bool Regex(string text, string pattern)Description
Tests whether the regular expression pattern matches anywhere within text.
Uses ECMAScript regex syntax (same as JavaScript).
Returns true if at least one match is found, false otherwise.
An invalid pattern causes a script error.
Parameter
- text - The input string to search in.
- pattern - The regular expression pattern.
Returns
true if the pattern matches anywhere in text, false otherwise.
Example
void main()
{
bool b1 = Regex("Hello World", "World"); // true
bool b2 = Regex("abc123", "\\d+"); // true (contains digits)
bool b3 = Regex("hello", "^Hello$"); // false (case-sensitive)
bool b4 = Regex("test@mail.com", "\\w+@\\w+\\.\\w+"); // true
}