RegEx Tester
No matches found.
Regex Cheat Sheet
.— Any character except newline\w— Word character [a-zA-Z0-9_]\d— Digit [0-9]\s— Whitespace[abc]— Any character a, b, or c[^abc]— Not a, b, or ca*— 0 or more a'sa+— 1 or more a'sa?— 0 or 1 aa{3}— Exactly 3 a'sa{3,}— 3 or more a'sa{3,5}— 3 to 5 a's(abc)— Capture group|— OR^— Start of line$— End of line\b— Word boundary(?=a)— Lookahead(?<=a)— Lookbehind