Escapes
In regex, some characters have special meanings as we will explore across the chapters:
|
{
,}
(
,)
[
,]
^
,$
+
,*
,?
\
.
— Literal only within character classes.1-
— Sometimes a special character within character classes.
When we wish to match these characters literally, we need to “escape” them.
This is done by prefixing the character with a \
.
/\(paren\)/g
[RegExr] [Visual]- 0 matches
paren
- 0 matches
parents
- 1 match
(paren)
(paren)
- 1 match
a (paren)
(paren)
/(paren)/g
[RegExr] [Visual]- 1 match
paren
paren
- 1 match
parents
paren
- 1 match
(paren)
paren
- 1 match
a (paren)
paren
/example\.com/g
[RegExr] [Visual]- 1 match
example.com
example.com
- 1 match
a.example.com/foo
example.com
- 0 matches
example_com
- 0 matches
example@com
- 0 matches
example_com/foo
/example.com/g
[RegExr] [Visual]- 1 match
example.com
example.com
- 1 match
a.example.com/foo
example.com
- 1 match
example_com
example_com
- 1 match
example@com
example@com
- 1 match
example_com/foo
example_com
/A\+/g
[RegExr] [Visual]- 1 match
A+
A+
- 1 match
A+B
A+
- 1 match
5A+
A+
- 0 matches
AAA
/A+/g
[RegExr] [Visual]- 1 match
A+
A
- 1 match
A+B
A
- 1 match
5A+
A
- 1 match
AAA
AAA
/worth \$5/g
[RegExr] [Visual]- 1 match
worth $5
worth $5
- 1 match
worth $54
worth $5
- 1 match
not worth $5
worth $5
/worth $5/g
[RegExr] [Visual]- 0 matches
worth $5
- 0 matches
worth $54
- 0 matches
not worth $5
Examples
JavaScript in-line comments
/\/\/.*/g
[RegExr] [Visual]- 1 match
console.log(); // comment
// comment
- 1 match
console.log(); // // comment
// // comment
- 0 matches
console.log();
Asterisk-surrounded substrings
/\*[^\*]*\*/g
[RegExr] [Visual]- 1 match
here be *italics*
*italics*
- 1 match
permitted**
**
- 1 match
a*b*c*d
*b*
- 2 matches
a*b*c*d*e
*b*
*d*
- 0 matches
a️bcd
The first and last asterisks are literal since they are escaped — \*
.
The asterisk inside the character class does not necessarily need to be escaped1, but I’ve escaped it anyway for clarity.
The asterisk immediately following the character class indicates repetition of the character class, which we’ll explore in chapters that follow.
- Many special characters that would otherwise have special meanings are treated literally by default inside character classes.↩