Toggle navigation menu
wkit
wkit
Developer Tools
Base64 Converter
JSON Formatter
URL Encoder
Color Converter
Cron Builder
Regex Tester
Image Tools
GIF Processor
Image to PDF
Agile Tools
Planning Poker
Sprint Calculator
System Tools
Time Converter
Regex Tester
Regular Expression Tester
Test and debug regular expressions with real-time matching and visualization
Regular Expression Pattern
Common Patterns
Select a common pattern
Regex Flags
g
Global
i
Case Insensitive
m
Multiline
s
Dot All
u
Unicode
y
Sticky
Test String
Matches (0)
Highlighted Text
Code Export
Enter a pattern to start testing
Export
Import
Quick Reference
Character Classes
.
- Any character
\d
- Digit (0-9)
\w
- Word character
\s
- Whitespace
[abc]
- Character set
[^abc]
- Negated set
Quantifiers
*
- 0 or more
+
- 1 or more
?
- 0 or 1
{n}
- Exactly n
{n,}
- n or more
{n,m}
- Between n and m
Anchors & Groups
^
- Start of string
$
- End of string
\b
- Word boundary
(abc)
- Capture group
(?:abc)
- Non-capture
a|b
- Alternation