The pattern arguments may contain any of the following special characters:
? Matches any single character.
* Matches any sequence of zero or more characters.
[chars] Matches any single character in chars. If chars contains a sequence of the form a-b then any character between a and b (inclusive) will match.
\x Matches the character x.
{a,b,...} Matches any of the strings a, b, etc.