Matches any single character, including white space.
asterisk
*
Matches 0 or more sequences of the pattern.
plus sign
+
Matches 1 or more sequences of the pattern.
question mark
?
Matches 0 or 1 occurrences of the pattern.
caret
^
Matches the beginning of the input string.
dollar sign
$
Matches the end of the input string.
underscore
_
Matches a comma (,), left brace ({), right brace (}), left parenthesis, right parenthesis, the beginning of the input string, the end of the input string, or a space.