Advertisement
Pattern | Flags: g=global i=insensitive m=multiline
Test String
The quick brown fox jumps over the lazy dog.
Pack my box with five dozen liquor jugs.
How much wood would a woodchuck chuck?
Quick Reference — click to insert
.+
One or more chars
\d+
One or more digits
\w+
Word characters
^
Start of string
$
End of string
[a-z]
Char range
Advertisement