Loading utilities...
Test regular expressions in real-time with match highlighting, groups display, and a comprehensive common patterns library.
Enter a regex pattern, set flags, and test against your string. Use the common patterns library for quick access to frequently used regex.
Regex Tips
. - Any character\d - Digit (0-9)\w - Word (a-z, A-Z, 0-9, _)\s - Whitespace* - 0 or more+ - 1 or more? - 0 or 1{n,m} - Between n and m^ - Start of string$ - End of string\b - Word boundary\B - Not word boundary