Tools
>
Evaluate Regular Expressions
Regular Expression
*
:
Modifiers:
i
m
s
x
A
D
i
— Do case-insensitive pattern matching.
m
— ^ and $ match newlines within data.
s
— . matches anything including new line character.
x
— Ignore whitespace and # comments.
A
— Force pattern anchoring.
D
— $ not to match newline at end.
Text to match
*
:
Mode:
find matches
replace matches with string
Options:
all matches
output result as JSON
Replacement string:
Evaluate