A list of characters contained in square brackets matches against any one of the characters in the list.
For example:
/[ABC]/Matches either "A", "B", or "C"
Also, a hyphen can be used to specify a range, such as
/[0-9ABC]/Matches either "A", "B", "C", or a single digit.