regex flag
๐ง under construction
Last updated
Was this helpful?
๐ง under construction
Last updated
Was this helpful?
โฉ โฉ โฉ โฉ flag
generate indices for substring matches.
treat a pattern as a sequence of Unicode .
g
global search.
i
ignore case.
m
allows ^
and $
to match newline.
s
allows .
to match newline.
y
"sticky" search: matches starting at the current position in the target string.
when using , the regex
must have the global (g
) set, or a is thrown