Category: Text function
This function determines if text matches the regular expression ("RegEx") pattern regex_text and returns TRUE if it does. Otherwise, it returns FALSE.
Argument | Type | Description |
---|---|---|
text | Text | The text value to test against the regex_text RegEx pattern. |
regex_text | Text (RegEx pattern) | The string pattern to search for within text. |
Return value type: Boolean (TRUE/FALSE)
EasyMorph uses the .NET regex language.
isregexmatch('1234', '^\d{4}$') //Returns TRUE
isregexmatch('12345', '^\d{4}$') //Returns FALSE
isregexmatch('11-2233', '\d{2}-\d{4}') //Returns TRUE
isregexmatch('112233', '\d{2}-\d{4}') //Returns FALSE