|
_
|
match one or zero characters
|
colo_r
|
|
@
|
match exactly one alpha character
|
gr@y
|
|
#
|
match exactly one numeric character
|
#600
|
|
\
|
take the next character literally, not as an operator
|
name\@ptfs.com
|
|
*
|
match anything or nothing
|
comput*
|
|
?
|
match exactly one character
|
wom?n
|
|
^
|
match any character except the next character
|
199[^7]
|
|
[ ]
|
search expression; can include a hyphen to indicate a range of letters or numbers; will match only one character within the brackets
|
199[1-5]
|
|
adj
|
search expression; Word1 must be found within N words of word2, and word1 must come before word2.
|
word1 word2 adj N
|
|
within
|
search expression; Word1 must be found within N words of word2.
|
word1 word2 within N
|