Add RegexMatch and RegexReplace steps
-
Create a
RegexMatchstep that takes a string and a regex and returns a bool -
RegexMatch 'Hello' '\w+'returnstrue -
Create a
RegexReplacestep that takes a string and a regex and returns a string -
RegexMatch 'Hello' '\w' (stringconcat [<value>, ' '] )returnsH e l l o
Changelog Summary
Edited by Mark Wainwright