Consider the character class [aeiou]
. This character class can be used in a regular expression to match a set of similarly spelled words.
b[aeiou]t
matches:
It does not match:
Character classes on their own match one and only one character at a time.