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.

Syntax

RegExIsMatch(pattern, Text)

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

Parameters

Name
Type
Required
Description

pattern

text

☑️

The pattern you want to check for.

text

text

☑️

The text you want to check for patterns.

Last updated

Was this helpful?