Apply multiple regular expressions on the string in a single action.
Inputs:
Input String – string to process
RX – array with regular expressions, each having a Name
and Pattern
Case Sensitive – is the pattern case sensitive
Multiline – ^
and $
match the start/end of each line instead of the whole string
Global Search – return only the first match or all of them
Single Line – .
matches any character including new line, making it a single line Input string
Outputs:
body – object with properties and values matching the RX

Example
Extract name, email, and phone number from a string.
