Use regular expression to find specific string in a text and replace it.
Inputs:
Input String – string to process
Pattern – regular expression to find the string to replace
Replacement String – what should the found string be replaced with
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
Ignore Whitespace – ignore whitespaces and comments in the pattern
Single Line – .
matches any character including new line, making it a single line Input string
Outputs:
Replaced String

Example
Replace email addresses with the string [REDACTED].
