* Regular expression replace tool


CREATED: 2015/05/05
REVISED: 2015/05/05


Target of regular expression formula:

g i m
Result of regular expression formula:

*
Target:
Result:

* The flags can have any combination of the following values.
g: global match, replace all matches, not just the first one.
i: ignore case.
m: multiline, treat beginning ^ and end $ characters as working over multiple lines.

BACK TO TOP