Regex and Microflow

0
Hi, how do i use a regex in a microflow
asked
2 answers
2

isMatch() will return a true or false based on the regular expression. If that is what you need, use it.

Another option is the Community Commons Module in the appstore. A java action called RegexTest can be used to achieve the same as isMatch() and a java action called RegexReplaceAll can be used to replace data based on a regular expression.

answered
1

isMatch() function should do the trick! You can use this in a exclusive split.

answered