RegExIsMatch

The RegExIsMatch() function checks a text for a pattern if it can be found.

All regex functions use a pattern to check for matches in the input text.

For a more complete explanation and special / allowed characters you can visit this WEM Forum post. Here you find a cheat-sheet and a few helpful examples.

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Returns True if the pattern is found in text.

Returns False if the pattern is not found in text.

Returns [unknown] if no matches are found or the pattern is faulty.

Syntax

RegExIsMatch(pattern, Text)

RegExIsMatch("([0-9:]+)", "Yes the match is at 20:15") => True

Parameters

NameTypeRequiredDescription

pattern

text

The pattern you want to check for.

text

text

The text you want to check for patterns.

Last updated