Category: Text function
This function returns the first substring that matches the regular expression pattern regex_text.
RegExMatch is useful for fuzzy-matching and extracting substrings of text using a specific pattern of characters.
Argument | Type | Description |
---|---|---|
text | Text | The text value to test for the regex_text RegEx pattern. |
regex_text | Text (RegEx pattern) | The string pattern to search for within text. The first instance of text matching this pattern is returned. |
Return value type: Text
EasyMorph uses the .NET regex language.
regexmatch('12345678', '^\d{4}') //Returns '1234'
regexmatch('MaryAnne', '[a-zA-z]{4}) //Returns 'Mary'