Title here
Summary here
Replace all matches of a regular expression in a string.
The Regex you want to find in the string.
Example: ^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$
The string you want to find Regex in.
Example: These are example emails: email@example.com, another-email@example.com, and yet-another-email@example.com
The string you want to replace the Regex matches with.
Example: [redacted email]
The string with the Regex matches replaced.
Example: These are example emails: [redacted email], [redacted email], [redacted email]