|
perlrebackslash - Perl Regular Expression Backslash Sequences and Escapes
The top level documentation about Perl regular expressions
is found in the perlre manpage.
This document describes all backslash and escape sequences. After
explaining the role of the backslash, it lists all the sequences that have
a special meaning in Perl regular expressions (in alphabetical order),
then describes each of them.
Most sequences are described in detail in different documents; the primary
purpose of this document is to have a quick reference guide describing all
backslash and escape sequences.
In a regular expression, the backslash can perform one of two tasks:
it either takes away the special meaning of the character following it
(for instance, \| matches a vertical bar, it's not an alternation),
or it is the start of a backslash or escape sequence.
The rules determining what it is are quite simple: if the character
following the backslash is a punctuation (non-word) character (that is,
anything that is not a letter, digit or underscore), then the backslash
just takes away the special meaning (if any) of the character following
it.
If the character following the backslash is a letter or a digit, then the
sequence may be special; if so, it's listed below. A few letters have not
been used yet, and escaping them with a backslash is safe for now, but a
future version of Perl may assign a special meaning to it. However, if you
have warnings turned on, Perl will issue a warning if you use such a sequence.
[1].
It is however guaranteed that backslash or escape sequences never have a
punctuation character following the backslash, not now, and not in a future
version of Perl 5. So it is safe to put a backslash in front of a non-word
character.
Note that the backslash itself is special; if you want to match a backslash,
you have to escape the backslash with a backslash: /\\/ matches a single
backslash.
- [1]
-
There is one exception. If you use an alphanumerical character as the
delimiter of your pattern (which you probably shouldn't do for readability
reasons), you will have to escape the delimiter if you want to match
it. Perl won't warn then. See also Gory details of parsing quoted constructs in the perlop manpage.
\000 Octal escape sequence.
\1 Absolute backreference.
\a Alarm or bell.
\A Beginning of string.
\b Word/non-word boundary. (Backspace in a char class).
\B Not a word/non-word boundary.
\cX Control-X (X can be any ASCII character).
\C Single octet, even under UTF-8.
\d Character class for digits.
\D Character class for non-digits.
\e Escape character.
\E Turn off \Q, \L and \U processing.
\f Form feed.
\g{}, \g1 Named, absolute or relative backreference.
\G Pos assertion.
\h Character class for horizontal white space.
\H Character class for non horizontal white space.
\k{}, \k<>, \k'' Named backreference.
\K Keep the stuff left of \K.
\l Lowercase next character.
\L Lowercase till \E.
\n (Logical) newline character.
\N{} Named (Unicode) character.
\p{}, \pP Character with a Unicode property.
\P{}, \PP Character without a Unicode property.
\Q Quotemeta till \E.
\r Return character.
\R Generic new line.
\s Character class for white space.
\S Character class for non white space.
\t Tab character.
\u Titlecase next character.
\U Uppercase till \E.
\v Character class for vertical white space.
\V Character class for non vertical white space.
\w Character class for word characters.
\W Character class for non-word characters.
\x{}, \x00 Hexadecimal escape sequence.
\X Extended Unicode "combining character sequence".
\z End of string.
\Z End of string.
A handful of characters have a dedicated character escape. The following
table shows them, along with their code points (in decimal and hex), their
ASCII name, the control escape (see below) and a short description.
Seq. Code Point ASCII Cntr Description.
Dec Hex
\a 7 07 BEL \cG alarm or bell
\b 8 08 BS \cH backspace [1]
\e 27 1B ESC \c[ escape character
\f 12 0C FF \cL form feed
\n 10 0A LF \cJ line feed [2]
\r 13 0D CR \cM carriage return
\t 9 09 TAB \cI tab
- [1]
-
\b is only the backspace character inside a character class. Outside a
character class, \b is a word/non-word boundary.
- [2]
-
\n matches a logical newline. Perl will convert between \n and your
OSses native newline character when reading from or writing to text files.
$str =~ /\t/;
\c is used to denote a control character; the character following \c
is the name of the control character. For instance, /\cM/ matches the
character control-M (a carriage return, code point 13). The case of the
character following \c doesn't matter: \cM and \cm match the same
character.
Mnemonic: control character.
$str =~ /\cK/;
All Unicode characters have a Unicode name, and characters in various scripts
have names as well. It is even possible to give your own names to characters.
You can use a character by name by using the \N{} construct; the name of
the character goes between the curly braces. You do have to use charnames
to load the names of the characters, otherwise Perl will complain you use
a name it doesn't know about. For more details, see the charnames manpage.
Mnemonic: Named character.
use charnames ':full';
$str =~ /\N{THAI CHARACTER SO SO}/;
use charnames 'Cyrillic';
$str =~ /\N{ZHE}\N{KA}/;
Octal escapes consist of a backslash followed by two or three octal digits
matching the code point of the character you want to use. This allows for
512 characters (\00 up to \777) that can be expressed this way.
Enough in pre-Unicode days, but most Unicode characters cannot be escaped
this way.
Note that a character that is expressed as an octal escape is considered
as a character without special meaning by the regex engine, and will match
"as is".
$str = "Perl";
$str =~ /\120/;
$str =~ /\120+/;
$str =~ /P\053/;
Octal escapes potentially clash with backreferences. They both consist
of a backslash followed by numbers. So Perl has to use heuristics to
determine whether it is a backreference or an octal escape. Perl uses
the following rules:
-
If the backslash is followed by a single digit, it's a backreference.
-
If the first digit following the backslash is a 0, it's an octal escape.
-
If the number following the backslash is N (decimal), and Perl already has
seen N capture groups, Perl will consider this to be a backreference.
Otherwise, it will consider it to be an octal escape. Note that if N > 999,
Perl only takes the first three digits for the octal escape; the rest is
matched as is.
my $pat = "(" x 999;
$pat .= "a";
$pat .= ")" x 999;
/^($pat)\1000$/;
/^$pat\1000$/;
Hexadecimal escapes start with \x and are then either followed by
two digit hexadecimal number, or a hexadecimal number of arbitrary length
surrounded by curly braces. The hexadecimal number is the code point of
the character you want to express.
Note that a character that is expressed as a hexadecimal escape is considered
as a character without special meaning by the regex engine, and will match
"as is".
Mnemonic: hexadecimal.
$str = "Perl";
$str =~ /\x50/;
$str =~ /\x50+/;
$str =~ /P\x2B/;
/\x{2603}\x{2602}/
/\x{263B}/
/\x{263b}/
A number of backslash sequences have to do with changing the character,
or characters following them. \l will lowercase the character following
it, while \u will uppercase (or, more accurately, titlecase) the
character following it. (They perform similar functionality as the
functions lcfirst and ucfirst).
To uppercase or lowercase several characters, one might want to use
\L or \U, which will lowercase/uppercase all characters following
them, until either the end of the pattern, or the next occurrence of
\E, whatever comes first. They perform similar functionality as the
functions lc and uc do.
\Q is used to escape all characters following, up to the next \E
or the end of the pattern. \Q adds a backslash to any character that
isn't a letter, digit or underscore. This will ensure that any character
between \Q and \E is matched literally, and will not be interpreted
by the regexp engine.
Mnemonic: Lowercase, Uppercase, Quotemeta, End.
$sid = "sid";
$greg = "GrEg";
$miranda = "(Miranda)";
$str =~ /\u$sid/;
$str =~ /\L$greg/;
$str =~ /\Q$miranda\E/;
Perl regular expressions have a large range of character classes. Some of
the character classes are written as a backslash sequence. We will briefly
discuss those here; full details of character classes can be found in
the perlrecharclass manpage.
\w is a character class that matches any word character (letters,
digits, underscore). \d is a character class that matches any digit,
while the character class \s matches any white space character.
New in perl 5.10.0 are the classes \h and \v which match horizontal
and vertical w
|