Simple classes
RegexMatches[abc]Any of the following characters: a, b, or c[a-z]Any character from a to z, inclusive (this is called a range)[0-9]Any digit from 0 to 9, inclusive
Common classes
Some groups/ranges of characters are so often used, they have special abbreviations:
RegexMatche...