isRegexMatch
Verifies if provided Verificable
represents a string that matches provided regex
object.
Arguments:
regex
- required, of typeRegExp
Possible errors:
If provided Verificable
is not a string:
Verificable
is not a string:If provided Verificable
is not matching provided regex
:
Verificable
is not matching provided regex
:Examples:
Each of examples uses this import statement:
Null or undefined is not considered a string:
Number value is not considered a string as well:
Value not matching the regex
is not matching the predicate:
regex
is not matching the predicate:Value matching the regex
matches the predicate:
regex
matches the predicate:Last updated
Was this helpful?