matchRegex..Root.String.matchRegexDetermines if the regular expression matches this string.
Parameters: String regex
Return value: new Boolean
NativeCallable, Callable
log("aaaa".matchRegex("[a-z]+"));
log("aAaa".matchRegex("[a-z]+"));
true
false