Character Classes
It’s possible to match a character from within a set of characters.
/[aeiou]/g
[RegExr] [Visual]- 4 matches
avocado
a
o
a
o
- 2 matches
brinjal
i
a
- 3 matches
onion
o
i
o
- 0 matches
rhythm
/[aeiou]/g
matches all vowels in our input strings.
Here’s another example of these in action:
/p[aeiou]t/g
[RegExr] [Visual]- 1 match
pat
pat
- 1 match
pet
pet
- 1 match
pit
pit
- 1 match
spat
pat
- 2 matches
spot a pet
pot
pet
- 0 matches
bat
We match a p
, followed by one of the vowels, followed by a t
.
There’s an intuitive shortcut for matching a character from within a continuous range.
/[a-z]/g
[RegExr] [Visual]- 5 matches
john_s
j
o
h
n
s
- 5 matches
matej29
m
a
t
e
j
- 5 matches
Ayesha?!
y
e
s
h
a
- 0 matches
4952
- 0 matches
LOUD
The regex /[a-z]/g
matches only one character. In the example above, the strings have several matches each, each one character long. Not one long match.
We can combine ranges and individual characters in our regexes.
/[A-Za-z0-9_-]/g
[RegExr] [Visual]- 6 matches
john_s
j
o
h
n
_
s
- 7 matches
matej29
m
a
t
e
j
2
9
- 6 matches
Ayesha?!
A
y
e
s
h
a
- 4 matches
4952
4
9
5
2
- 4 matches
LOUD
L
O
U
D
Our regex /[A-Za-z0-9_-]/g
matches a single character, which must be (at least) one of the following:
- from
A-Z
- from
a-z
- from
0-9
- one of
_
and-
.
We can also “negate” these rules:
/[^aeiou]/g
[RegExr] [Visual]- 6 matches
Umbrella
U
m
b
r
l
l
- 6 matches
cauliflower
c
l
f
l
w
r
- 0 matches
ou
The only difference between the first regex of this chapter and /[^aeiou]/g
is the ^
immediately after the opening bracket. Its purpose is to negate the rules defined within the brackets. We are now saying:
“match any character that is not any of
a
,e
,i
,o
, andu
”
Examples
Prohibited username characters
/[^a-zA-Z_0-9-]/g
[RegExr] [Visual]- 0 matches
TheLegend27
- 0 matches
WaterGuy12
- 0 matches
Smokie_Bear
- 7 matches
Robert'); DROP TABLE Students;--
'
)
;
;
Unambiguous characters
/[A-HJ-NP-Za-kmnp-z2-9]/g
[RegExr] [Visual]- 1 match
foo
f
- 2 matches
lily
i
y
- 0 matches
lI0O1
- 11 matches
unambiguity
u
n
a
m
b
i
g
u
i
t
y