/
/
Enter your regular expression pattern without delimiters
Professional online regular expression tester and debugger with real-time matching, syntax highlighting, and detailed explanations. Perfect for developers and text processing tasks.
| Match # | Full Match | Groups | Position |
|---|---|---|---|
| No matches to display | |||
Enter a regex pattern to see its explanation here.
. Any character\d Digit (0-9)\w Word character\s Whitespace[abc] Character set[^abc] Negated set* 0 or more+ 1 or more? 0 or 1{n} Exactly n{n,} n or more{n,m} n to m^ Start of string$ End of string\b Word boundary\B Non-word boundary(abc) Capturing group(?:abc) Non-capturing(?=abc) Positive lookahead(?!abc) Negative lookahead