PATTERN

/ /

TEST STRING

REPLACE:

HIGHLIGHTED MATCHES

MATCHES: 0
GROUPS: 0
TIME: 0ms

MATCH DETAILS

#MATCHINDEXGROUPS

CHEATSHEET

.Any char (except newline)\dDigit [0-9]
\wWord char [a-zA-Z0-9_]\sWhitespace
^Start of string/line$End of string/line
*0 or more+1 or more
?0 or 1{n,m}n to m times
[abc]Char class[^abc]Negated class
(abc)Capture group(?:abc)Non-capture group
a|bAlternation\bWord boundary
(?=abc)Positive lookahead(?!abc)Negative lookahead
(?<=a)Positive lookbehind(?<!a)Negative lookbehind