regex chars
match any single character
.
regex chars
match an optional item only once
?
regex chars
match 0 to n chars in string
*
regex chars
items MUST be matched at lease once but can be matched more
+
regex chars
match # of times
#
regex chars
match # of times or more
,
regex chars
match between the first and second number
,
regex chars
words that start with what comes after
<
regex chars
words that start with what comes after
regex chars
words that end with what comes after
>
regex chars
words that end with what comes after
$
regex chars
words that contain either ‘a’ or ‘A’
[aA]
regex chars
words that do NOT contain the letter
[^o]