Escaped Sequences

The following table lists the backslashed representations of characters that you can use in regular expressions:

Code

Matches

\a

Alarm (beep)

\n

Newline

\r

Carriage return

\t

Tab

\f

Formfeed

\e

Escape

\038

Any octal ASCII value

\x7f

Any hexadecimal ASCII value

\x{263a}

A wide hexadecimal value

\c x

Control-x

\N{ name }

A named character

Get Perl in a Nutshell, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.