RegexReplace
This Flow Script tutorial explains how to use the RegexReplace function with syntax and examples.
Description
Syntax
Parameters
Returns
Example
RegexReplace("2hello1", "\d", "X")
Result: XhelloX
return RegexReplace("22hello1", "\d{2}", "X");
Result: Xhello1
return RegexReplace("2hello1", "\w{2}", "X");
Result: XXX1Last updated
Was this helpful?