2d: Character class
Dash(-
) is a special and used to specify range, inclusive.
let re = /ES202[012345]/v;
let re = /ES202[0-5]/v;
Range should be ordered by Unicode code point, ASC.
[a-a]
is also valid and equivalent to [a]
, just literal a
.
FYI: \d
, [0123456789]
, and [0-9]
are the same!