User Tools

Site Tools


syntax:functions:isregexmatch

IsRegExMatch(text, regex_text)

Category: Text function


Description

This function determines if text matches the regular expression ("RegEx") pattern regex_text and returns TRUE if it does. Otherwise, it returns FALSE.


Arguments

ArgumentTypeDescription
textTextThe text value to test against the regex_text RegEx pattern.
regex_textText (RegEx pattern)The string pattern to search for within text.

Return value type: Boolean (TRUE/FALSE)


Remarks

EasyMorph uses the .NET regex language.


Examples

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


See also

syntax/functions/isregexmatch.txt · Last modified: 2022/05/20 06:56 by dmitry

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki