This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlexperiment: mark regexp backtracking verbs as accepted
[perl5.git] / pod / perlretut.pod
1 =head1 NAME
2
3 perlretut - Perl regular expressions tutorial
4
5 =head1 DESCRIPTION
6
7 This page provides a basic tutorial on understanding, creating and
8 using regular expressions in Perl.  It serves as a complement to the
9 reference page on regular expressions L<perlre>.  Regular expressions
10 are an integral part of the C<m//>, C<s///>, C<qr//> and C<split>
11 operators and so this tutorial also overlaps with
12 L<perlop/"Regexp Quote-Like Operators"> and L<perlfunc/split>.
13
14 Perl is widely renowned for excellence in text processing, and regular
15 expressions are one of the big factors behind this fame.  Perl regular
16 expressions display an efficiency and flexibility unknown in most
17 other computer languages.  Mastering even the basics of regular
18 expressions will allow you to manipulate text with surprising ease.
19
20 What is a regular expression?  A regular expression is simply a string
21 that describes a pattern.  Patterns are in common use these days;
22 examples are the patterns typed into a search engine to find web pages
23 and the patterns used to list files in a directory, e.g., C<ls *.txt>
24 or C<dir *.*>.  In Perl, the patterns described by regular expressions
25 are used to search strings, extract desired parts of strings, and to
26 do search and replace operations.
27
28 Regular expressions have the undeserved reputation of being abstract
29 and difficult to understand.  Regular expressions are constructed using
30 simple concepts like conditionals and loops and are no more difficult
31 to understand than the corresponding C<if> conditionals and C<while>
32 loops in the Perl language itself.  In fact, the main challenge in
33 learning regular expressions is just getting used to the terse
34 notation used to express these concepts.
35
36 This tutorial flattens the learning curve by discussing regular
37 expression concepts, along with their notation, one at a time and with
38 many examples.  The first part of the tutorial will progress from the
39 simplest word searches to the basic regular expression concepts.  If
40 you master the first part, you will have all the tools needed to solve
41 about 98% of your needs.  The second part of the tutorial is for those
42 comfortable with the basics and hungry for more power tools.  It
43 discusses the more advanced regular expression operators and
44 introduces the latest cutting-edge innovations.
45
46 A note: to save time, 'regular expression' is often abbreviated as
47 regexp or regex.  Regexp is a more natural abbreviation than regex, but
48 is harder to pronounce.  The Perl pod documentation is evenly split on
49 regexp vs regex; in Perl, there is more than one way to abbreviate it.
50 We'll use regexp in this tutorial.
51
52 =head1 Part 1: The basics
53
54 =head2 Simple word matching
55
56 The simplest regexp is simply a word, or more generally, a string of
57 characters.  A regexp consisting of a word matches any string that
58 contains that word:
59
60     "Hello World" =~ /World/;  # matches
61
62 What is this Perl statement all about? C<"Hello World"> is a simple
63 double-quoted string.  C<World> is the regular expression and the
64 C<//> enclosing C</World/> tells Perl to search a string for a match.
65 The operator C<=~> associates the string with the regexp match and
66 produces a true value if the regexp matched, or false if the regexp
67 did not match.  In our case, C<World> matches the second word in
68 C<"Hello World">, so the expression is true.  Expressions like this
69 are useful in conditionals:
70
71     if ("Hello World" =~ /World/) {
72         print "It matches\n";
73     }
74     else {
75         print "It doesn't match\n";
76     }
77
78 There are useful variations on this theme.  The sense of the match can
79 be reversed by using the C<!~> operator:
80
81     if ("Hello World" !~ /World/) {
82         print "It doesn't match\n";
83     }
84     else {
85         print "It matches\n";
86     }
87
88 The literal string in the regexp can be replaced by a variable:
89
90     $greeting = "World";
91     if ("Hello World" =~ /$greeting/) {
92         print "It matches\n";
93     }
94     else {
95         print "It doesn't match\n";
96     }
97
98 If you're matching against the special default variable C<$_>, the
99 C<$_ =~> part can be omitted:
100
101     $_ = "Hello World";
102     if (/World/) {
103         print "It matches\n";
104     }
105     else {
106         print "It doesn't match\n";
107     }
108
109 And finally, the C<//> default delimiters for a match can be changed
110 to arbitrary delimiters by putting an C<'m'> out front:
111
112     "Hello World" =~ m!World!;   # matches, delimited by '!'
113     "Hello World" =~ m{World};   # matches, note the matching '{}'
114     "/usr/bin/perl" =~ m"/perl"; # matches after '/usr/bin',
115                                  # '/' becomes an ordinary char
116
117 C</World/>, C<m!World!>, and C<m{World}> all represent the
118 same thing.  When, e.g., the quote (C<">) is used as a delimiter, the forward
119 slash C<'/'> becomes an ordinary character and can be used in this regexp
120 without trouble.
121
122 Let's consider how different regexps would match C<"Hello World">:
123
124     "Hello World" =~ /world/;  # doesn't match
125     "Hello World" =~ /o W/;    # matches
126     "Hello World" =~ /oW/;     # doesn't match
127     "Hello World" =~ /World /; # doesn't match
128
129 The first regexp C<world> doesn't match because regexps are
130 case-sensitive.  The second regexp matches because the substring
131 S<C<'o W'>> occurs in the string S<C<"Hello World">>.  The space
132 character ' ' is treated like any other character in a regexp and is
133 needed to match in this case.  The lack of a space character is the
134 reason the third regexp C<'oW'> doesn't match.  The fourth regexp
135 C<'World '> doesn't match because there is a space at the end of the
136 regexp, but not at the end of the string.  The lesson here is that
137 regexps must match a part of the string I<exactly> in order for the
138 statement to be true.
139
140 If a regexp matches in more than one place in the string, Perl will
141 always match at the earliest possible point in the string:
142
143     "Hello World" =~ /o/;       # matches 'o' in 'Hello'
144     "That hat is red" =~ /hat/; # matches 'hat' in 'That'
145
146 With respect to character matching, there are a few more points you
147 need to know about.   First of all, not all characters can be used 'as
148 is' in a match.  Some characters, called I<metacharacters>, are reserved
149 for use in regexp notation.  The metacharacters are
150
151     {}[]()^$.|*+?\
152
153 The significance of each of these will be explained
154 in the rest of the tutorial, but for now, it is important only to know
155 that a metacharacter can be matched by putting a backslash before it:
156
157     "2+2=4" =~ /2+2/;    # doesn't match, + is a metacharacter
158     "2+2=4" =~ /2\+2/;   # matches, \+ is treated like an ordinary +
159     "The interval is [0,1)." =~ /[0,1)./     # is a syntax error!
160     "The interval is [0,1)." =~ /\[0,1\)\./  # matches
161     "#!/usr/bin/perl" =~ /#!\/usr\/bin\/perl/;  # matches
162
163 In the last regexp, the forward slash C<'/'> is also backslashed,
164 because it is used to delimit the regexp.  This can lead to LTS
165 (leaning toothpick syndrome), however, and it is often more readable
166 to change delimiters.
167
168     "#!/usr/bin/perl" =~ m!#\!/usr/bin/perl!;  # easier to read
169
170 The backslash character C<'\'> is a metacharacter itself and needs to
171 be backslashed:
172
173     'C:\WIN32' =~ /C:\\WIN/;   # matches
174
175 In addition to the metacharacters, there are some ASCII characters
176 which don't have printable character equivalents and are instead
177 represented by I<escape sequences>.  Common examples are C<\t> for a
178 tab, C<\n> for a newline, C<\r> for a carriage return and C<\a> for a
179 bell (or alert).  If your string is better thought of as a sequence of arbitrary
180 bytes, the octal escape sequence, e.g., C<\033>, or hexadecimal escape
181 sequence, e.g., C<\x1B> may be a more natural representation for your
182 bytes.  Here are some examples of escapes:
183
184     "1000\t2000" =~ m(0\t2)   # matches
185     "1000\n2000" =~ /0\n20/   # matches
186     "1000\t2000" =~ /\000\t2/ # doesn't match, "0" ne "\000"
187     "cat"   =~ /\o{143}\x61\x74/ # matches in ASCII, but a weird way
188                                  # to spell cat
189
190 If you've been around Perl a while, all this talk of escape sequences
191 may seem familiar.  Similar escape sequences are used in double-quoted
192 strings and in fact the regexps in Perl are mostly treated as
193 double-quoted strings.  This means that variables can be used in
194 regexps as well.  Just like double-quoted strings, the values of the
195 variables in the regexp will be substituted in before the regexp is
196 evaluated for matching purposes.  So we have:
197
198     $foo = 'house';
199     'housecat' =~ /$foo/;      # matches
200     'cathouse' =~ /cat$foo/;   # matches
201     'housecat' =~ /${foo}cat/; # matches
202
203 So far, so good.  With the knowledge above you can already perform
204 searches with just about any literal string regexp you can dream up.
205 Here is a I<very simple> emulation of the Unix grep program:
206
207     % cat > simple_grep
208     #!/usr/bin/perl
209     $regexp = shift;
210     while (<>) {
211         print if /$regexp/;
212     }
213     ^D
214
215     % chmod +x simple_grep
216
217     % simple_grep abba /usr/dict/words
218     Babbage
219     cabbage
220     cabbages
221     sabbath
222     Sabbathize
223     Sabbathizes
224     sabbatical
225     scabbard
226     scabbards
227
228 This program is easy to understand.  C<#!/usr/bin/perl> is the standard
229 way to invoke a perl program from the shell.
230 S<C<$regexp = shift;>> saves the first command line argument as the
231 regexp to be used, leaving the rest of the command line arguments to
232 be treated as files.  S<C<< while (<>) >>> loops over all the lines in
233 all the files.  For each line, S<C<print if /$regexp/;>> prints the
234 line if the regexp matches the line.  In this line, both C<print> and
235 C</$regexp/> use the default variable C<$_> implicitly.
236
237 With all of the regexps above, if the regexp matched anywhere in the
238 string, it was considered a match.  Sometimes, however, we'd like to
239 specify I<where> in the string the regexp should try to match.  To do
240 this, we would use the I<anchor> metacharacters C<^> and C<$>.  The
241 anchor C<^> means match at the beginning of the string and the anchor
242 C<$> means match at the end of the string, or before a newline at the
243 end of the string.  Here is how they are used:
244
245     "housekeeper" =~ /keeper/;    # matches
246     "housekeeper" =~ /^keeper/;   # doesn't match
247     "housekeeper" =~ /keeper$/;   # matches
248     "housekeeper\n" =~ /keeper$/; # matches
249
250 The second regexp doesn't match because C<^> constrains C<keeper> to
251 match only at the beginning of the string, but C<"housekeeper"> has
252 keeper starting in the middle.  The third regexp does match, since the
253 C<$> constrains C<keeper> to match only at the end of the string.
254
255 When both C<^> and C<$> are used at the same time, the regexp has to
256 match both the beginning and the end of the string, i.e., the regexp
257 matches the whole string.  Consider
258
259     "keeper" =~ /^keep$/;      # doesn't match
260     "keeper" =~ /^keeper$/;    # matches
261     ""       =~ /^$/;          # ^$ matches an empty string
262
263 The first regexp doesn't match because the string has more to it than
264 C<keep>.  Since the second regexp is exactly the string, it
265 matches.  Using both C<^> and C<$> in a regexp forces the complete
266 string to match, so it gives you complete control over which strings
267 match and which don't.  Suppose you are looking for a fellow named
268 bert, off in a string by himself:
269
270     "dogbert" =~ /bert/;   # matches, but not what you want
271
272     "dilbert" =~ /^bert/;  # doesn't match, but ..
273     "bertram" =~ /^bert/;  # matches, so still not good enough
274
275     "bertram" =~ /^bert$/; # doesn't match, good
276     "dilbert" =~ /^bert$/; # doesn't match, good
277     "bert"    =~ /^bert$/; # matches, perfect
278
279 Of course, in the case of a literal string, one could just as easily
280 use the string comparison S<C<$string eq 'bert'>> and it would be
281 more efficient.   The  C<^...$> regexp really becomes useful when we
282 add in the more powerful regexp tools below.
283
284 =head2 Using character classes
285
286 Although one can already do quite a lot with the literal string
287 regexps above, we've only scratched the surface of regular expression
288 technology.  In this and subsequent sections we will introduce regexp
289 concepts (and associated metacharacter notations) that will allow a
290 regexp to represent not just a single character sequence, but a I<whole
291 class> of them.
292
293 One such concept is that of a I<character class>.  A character class
294 allows a set of possible characters, rather than just a single
295 character, to match at a particular point in a regexp.  Character
296 classes are denoted by brackets C<[...]>, with the set of characters
297 to be possibly matched inside.  Here are some examples:
298
299     /cat/;       # matches 'cat'
300     /[bcr]at/;   # matches 'bat, 'cat', or 'rat'
301     /item[0123456789]/;  # matches 'item0' or ... or 'item9'
302     "abc" =~ /[cab]/;    # matches 'a'
303
304 In the last statement, even though C<'c'> is the first character in
305 the class, C<'a'> matches because the first character position in the
306 string is the earliest point at which the regexp can match.
307
308     /[yY][eE][sS]/;      # match 'yes' in a case-insensitive way
309                          # 'yes', 'Yes', 'YES', etc.
310
311 This regexp displays a common task: perform a case-insensitive
312 match.  Perl provides a way of avoiding all those brackets by simply
313 appending an C<'i'> to the end of the match.  Then C</[yY][eE][sS]/;>
314 can be rewritten as C</yes/i;>.  The C<'i'> stands for
315 case-insensitive and is an example of a I<modifier> of the matching
316 operation.  We will meet other modifiers later in the tutorial.
317
318 We saw in the section above that there were ordinary characters, which
319 represented themselves, and special characters, which needed a
320 backslash C<\> to represent themselves.  The same is true in a
321 character class, but the sets of ordinary and special characters
322 inside a character class are different than those outside a character
323 class.  The special characters for a character class are C<-]\^$> (and
324 the pattern delimiter, whatever it is).
325 C<]> is special because it denotes the end of a character class.  C<$> is
326 special because it denotes a scalar variable.  C<\> is special because
327 it is used in escape sequences, just like above.  Here is how the
328 special characters C<]$\> are handled:
329
330    /[\]c]def/; # matches ']def' or 'cdef'
331    $x = 'bcr';
332    /[$x]at/;   # matches 'bat', 'cat', or 'rat'
333    /[\$x]at/;  # matches '$at' or 'xat'
334    /[\\$x]at/; # matches '\at', 'bat, 'cat', or 'rat'
335
336 The last two are a little tricky.  In C<[\$x]>, the backslash protects
337 the dollar sign, so the character class has two members C<$> and C<x>.
338 In C<[\\$x]>, the backslash is protected, so C<$x> is treated as a
339 variable and substituted in double quote fashion.
340
341 The special character C<'-'> acts as a range operator within character
342 classes, so that a contiguous set of characters can be written as a
343 range.  With ranges, the unwieldy C<[0123456789]> and C<[abc...xyz]>
344 become the svelte C<[0-9]> and C<[a-z]>.  Some examples are
345
346     /item[0-9]/;  # matches 'item0' or ... or 'item9'
347     /[0-9bx-z]aa/;  # matches '0aa', ..., '9aa',
348                     # 'baa', 'xaa', 'yaa', or 'zaa'
349     /[0-9a-fA-F]/;  # matches a hexadecimal digit
350     /[0-9a-zA-Z_]/; # matches a "word" character,
351                     # like those in a Perl variable name
352
353 If C<'-'> is the first or last character in a character class, it is
354 treated as an ordinary character; C<[-ab]>, C<[ab-]> and C<[a\-b]> are
355 all equivalent.
356
357 The special character C<^> in the first position of a character class
358 denotes a I<negated character class>, which matches any character but
359 those in the brackets.  Both C<[...]> and C<[^...]> must match a
360 character, or the match fails.  Then
361
362     /[^a]at/;  # doesn't match 'aat' or 'at', but matches
363                # all other 'bat', 'cat, '0at', '%at', etc.
364     /[^0-9]/;  # matches a non-numeric character
365     /[a^]at/;  # matches 'aat' or '^at'; here '^' is ordinary
366
367 Now, even C<[0-9]> can be a bother to write multiple times, so in the
368 interest of saving keystrokes and making regexps more readable, Perl
369 has several abbreviations for common character classes, as shown below.
370 Since the introduction of Unicode, unless the C<//a> modifier is in
371 effect, these character classes match more than just a few characters in
372 the ASCII range.
373
374 =over 4
375
376 =item *
377
378 \d matches a digit, not just [0-9] but also digits from non-roman scripts
379
380 =item *
381
382 \s matches a whitespace character, the set [\ \t\r\n\f] and others
383
384 =item *
385
386 \w matches a word character (alphanumeric or _), not just [0-9a-zA-Z_]
387 but also digits and characters from non-roman scripts
388
389 =item *
390
391 \D is a negated \d; it represents any other character than a digit, or [^\d]
392
393 =item *
394
395 \S is a negated \s; it represents any non-whitespace character [^\s]
396
397 =item *
398
399 \W is a negated \w; it represents any non-word character [^\w]
400
401 =item *
402
403 The period '.' matches any character but "\n" (unless the modifier C<//s> is
404 in effect, as explained below).
405
406 =item *
407
408 \N, like the period, matches any character but "\n", but it does so
409 regardless of whether the modifier C<//s> is in effect.
410
411 =back
412
413 The C<//a> modifier, available starting in Perl 5.14,  is used to
414 restrict the matches of \d, \s, and \w to just those in the ASCII range.
415 It is useful to keep your program from being needlessly exposed to full
416 Unicode (and its accompanying security considerations) when all you want
417 is to process English-like text.  (The "a" may be doubled, C<//aa>, to
418 provide even more restrictions, preventing case-insensitive matching of
419 ASCII with non-ASCII characters; otherwise a Unicode "Kelvin Sign"
420 would caselessly match a "k" or "K".)
421
422 The C<\d\s\w\D\S\W> abbreviations can be used both inside and outside
423 of character classes.  Here are some in use:
424
425     /\d\d:\d\d:\d\d/; # matches a hh:mm:ss time format
426     /[\d\s]/;         # matches any digit or whitespace character
427     /\w\W\w/;         # matches a word char, followed by a
428                       # non-word char, followed by a word char
429     /..rt/;           # matches any two chars, followed by 'rt'
430     /end\./;          # matches 'end.'
431     /end[.]/;         # same thing, matches 'end.'
432
433 Because a period is a metacharacter, it needs to be escaped to match
434 as an ordinary period. Because, for example, C<\d> and C<\w> are sets
435 of characters, it is incorrect to think of C<[^\d\w]> as C<[\D\W]>; in
436 fact C<[^\d\w]> is the same as C<[^\w]>, which is the same as
437 C<[\W]>. Think DeMorgan's laws.
438
439 An anchor useful in basic regexps is the I<word anchor>
440 C<\b>.  This matches a boundary between a word character and a non-word
441 character C<\w\W> or C<\W\w>:
442
443     $x = "Housecat catenates house and cat";
444     $x =~ /cat/;    # matches cat in 'housecat'
445     $x =~ /\bcat/;  # matches cat in 'catenates'
446     $x =~ /cat\b/;  # matches cat in 'housecat'
447     $x =~ /\bcat\b/;  # matches 'cat' at end of string
448
449 Note in the last example, the end of the string is considered a word
450 boundary.
451
452 You might wonder why C<'.'> matches everything but C<"\n"> - why not
453 every character? The reason is that often one is matching against
454 lines and would like to ignore the newline characters.  For instance,
455 while the string C<"\n"> represents one line, we would like to think
456 of it as empty.  Then
457
458     ""   =~ /^$/;    # matches
459     "\n" =~ /^$/;    # matches, $ anchors before "\n"
460
461     ""   =~ /./;      # doesn't match; it needs a char
462     ""   =~ /^.$/;    # doesn't match; it needs a char
463     "\n" =~ /^.$/;    # doesn't match; it needs a char other than "\n"
464     "a"  =~ /^.$/;    # matches
465     "a\n"  =~ /^.$/;  # matches, $ anchors before "\n"
466
467 This behavior is convenient, because we usually want to ignore
468 newlines when we count and match characters in a line.  Sometimes,
469 however, we want to keep track of newlines.  We might even want C<^>
470 and C<$> to anchor at the beginning and end of lines within the
471 string, rather than just the beginning and end of the string.  Perl
472 allows us to choose between ignoring and paying attention to newlines
473 by using the C<//s> and C<//m> modifiers.  C<//s> and C<//m> stand for
474 single line and multi-line and they determine whether a string is to
475 be treated as one continuous string, or as a set of lines.  The two
476 modifiers affect two aspects of how the regexp is interpreted: 1) how
477 the C<'.'> character class is defined, and 2) where the anchors C<^>
478 and C<$> are able to match.  Here are the four possible combinations:
479
480 =over 4
481
482 =item *
483
484 no modifiers (//): Default behavior.  C<'.'> matches any character
485 except C<"\n">.  C<^> matches only at the beginning of the string and
486 C<$> matches only at the end or before a newline at the end.
487
488 =item *
489
490 s modifier (//s): Treat string as a single long line.  C<'.'> matches
491 any character, even C<"\n">.  C<^> matches only at the beginning of
492 the string and C<$> matches only at the end or before a newline at the
493 end.
494
495 =item *
496
497 m modifier (//m): Treat string as a set of multiple lines.  C<'.'>
498 matches any character except C<"\n">.  C<^> and C<$> are able to match
499 at the start or end of I<any> line within the string.
500
501 =item *
502
503 both s and m modifiers (//sm): Treat string as a single long line, but
504 detect multiple lines.  C<'.'> matches any character, even
505 C<"\n">.  C<^> and C<$>, however, are able to match at the start or end
506 of I<any> line within the string.
507
508 =back
509
510 Here are examples of C<//s> and C<//m> in action:
511
512     $x = "There once was a girl\nWho programmed in Perl\n";
513
514     $x =~ /^Who/;   # doesn't match, "Who" not at start of string
515     $x =~ /^Who/s;  # doesn't match, "Who" not at start of string
516     $x =~ /^Who/m;  # matches, "Who" at start of second line
517     $x =~ /^Who/sm; # matches, "Who" at start of second line
518
519     $x =~ /girl.Who/;   # doesn't match, "." doesn't match "\n"
520     $x =~ /girl.Who/s;  # matches, "." matches "\n"
521     $x =~ /girl.Who/m;  # doesn't match, "." doesn't match "\n"
522     $x =~ /girl.Who/sm; # matches, "." matches "\n"
523
524 Most of the time, the default behavior is what is wanted, but C<//s> and
525 C<//m> are occasionally very useful.  If C<//m> is being used, the start
526 of the string can still be matched with C<\A> and the end of the string
527 can still be matched with the anchors C<\Z> (matches both the end and
528 the newline before, like C<$>), and C<\z> (matches only the end):
529
530     $x =~ /^Who/m;   # matches, "Who" at start of second line
531     $x =~ /\AWho/m;  # doesn't match, "Who" is not at start of string
532
533     $x =~ /girl$/m;  # matches, "girl" at end of first line
534     $x =~ /girl\Z/m; # doesn't match, "girl" is not at end of string
535
536     $x =~ /Perl\Z/m; # matches, "Perl" is at newline before end
537     $x =~ /Perl\z/m; # doesn't match, "Perl" is not at end of string
538
539 We now know how to create choices among classes of characters in a
540 regexp.  What about choices among words or character strings? Such
541 choices are described in the next section.
542
543 =head2 Matching this or that
544
545 Sometimes we would like our regexp to be able to match different
546 possible words or character strings.  This is accomplished by using
547 the I<alternation> metacharacter C<|>.  To match C<dog> or C<cat>, we
548 form the regexp C<dog|cat>.  As before, Perl will try to match the
549 regexp at the earliest possible point in the string.  At each
550 character position, Perl will first try to match the first
551 alternative, C<dog>.  If C<dog> doesn't match, Perl will then try the
552 next alternative, C<cat>.  If C<cat> doesn't match either, then the
553 match fails and Perl moves to the next position in the string.  Some
554 examples:
555
556     "cats and dogs" =~ /cat|dog|bird/;  # matches "cat"
557     "cats and dogs" =~ /dog|cat|bird/;  # matches "cat"
558
559 Even though C<dog> is the first alternative in the second regexp,
560 C<cat> is able to match earlier in the string.
561
562     "cats"          =~ /c|ca|cat|cats/; # matches "c"
563     "cats"          =~ /cats|cat|ca|c/; # matches "cats"
564
565 Here, all the alternatives match at the first string position, so the
566 first alternative is the one that matches.  If some of the
567 alternatives are truncations of the others, put the longest ones first
568 to give them a chance to match.
569
570     "cab" =~ /a|b|c/ # matches "c"
571                      # /a|b|c/ == /[abc]/
572
573 The last example points out that character classes are like
574 alternations of characters.  At a given character position, the first
575 alternative that allows the regexp match to succeed will be the one
576 that matches.
577
578 =head2 Grouping things and hierarchical matching
579
580 Alternation allows a regexp to choose among alternatives, but by
581 itself it is unsatisfying.  The reason is that each alternative is a whole
582 regexp, but sometime we want alternatives for just part of a
583 regexp.  For instance, suppose we want to search for housecats or
584 housekeepers.  The regexp C<housecat|housekeeper> fits the bill, but is
585 inefficient because we had to type C<house> twice.  It would be nice to
586 have parts of the regexp be constant, like C<house>, and some
587 parts have alternatives, like C<cat|keeper>.
588
589 The I<grouping> metacharacters C<()> solve this problem.  Grouping
590 allows parts of a regexp to be treated as a single unit.  Parts of a
591 regexp are grouped by enclosing them in parentheses.  Thus we could solve
592 the C<housecat|housekeeper> by forming the regexp as
593 C<house(cat|keeper)>.  The regexp C<house(cat|keeper)> means match
594 C<house> followed by either C<cat> or C<keeper>.  Some more examples
595 are
596
597     /(a|b)b/;    # matches 'ab' or 'bb'
598     /(ac|b)b/;   # matches 'acb' or 'bb'
599     /(^a|b)c/;   # matches 'ac' at start of string or 'bc' anywhere
600     /(a|[bc])d/; # matches 'ad', 'bd', or 'cd'
601
602     /house(cat|)/;  # matches either 'housecat' or 'house'
603     /house(cat(s|)|)/;  # matches either 'housecats' or 'housecat' or
604                         # 'house'.  Note groups can be nested.
605
606     /(19|20|)\d\d/;  # match years 19xx, 20xx, or the Y2K problem, xx
607     "20" =~ /(19|20|)\d\d/;  # matches the null alternative '()\d\d',
608                              # because '20\d\d' can't match
609
610 Alternations behave the same way in groups as out of them: at a given
611 string position, the leftmost alternative that allows the regexp to
612 match is taken.  So in the last example at the first string position,
613 C<"20"> matches the second alternative, but there is nothing left over
614 to match the next two digits C<\d\d>.  So Perl moves on to the next
615 alternative, which is the null alternative and that works, since
616 C<"20"> is two digits.
617
618 The process of trying one alternative, seeing if it matches, and
619 moving on to the next alternative, while going back in the string
620 from where the previous alternative was tried, if it doesn't, is called
621 I<backtracking>.  The term 'backtracking' comes from the idea that
622 matching a regexp is like a walk in the woods.  Successfully matching
623 a regexp is like arriving at a destination.  There are many possible
624 trailheads, one for each string position, and each one is tried in
625 order, left to right.  From each trailhead there may be many paths,
626 some of which get you there, and some which are dead ends.  When you
627 walk along a trail and hit a dead end, you have to backtrack along the
628 trail to an earlier point to try another trail.  If you hit your
629 destination, you stop immediately and forget about trying all the
630 other trails.  You are persistent, and only if you have tried all the
631 trails from all the trailheads and not arrived at your destination, do
632 you declare failure.  To be concrete, here is a step-by-step analysis
633 of what Perl does when it tries to match the regexp
634
635     "abcde" =~ /(abd|abc)(df|d|de)/;
636
637 =over 4
638
639 =item 0
640
641 Start with the first letter in the string 'a'.
642
643 =item 1
644
645 Try the first alternative in the first group 'abd'.
646
647 =item 2
648
649 Match 'a' followed by 'b'. So far so good.
650
651 =item 3
652
653 'd' in the regexp doesn't match 'c' in the string - a dead
654 end.  So backtrack two characters and pick the second alternative in
655 the first group 'abc'.
656
657 =item 4
658
659 Match 'a' followed by 'b' followed by 'c'.  We are on a roll
660 and have satisfied the first group. Set $1 to 'abc'.
661
662 =item 5
663
664 Move on to the second group and pick the first alternative
665 'df'.
666
667 =item 6
668
669 Match the 'd'.
670
671 =item 7
672
673 'f' in the regexp doesn't match 'e' in the string, so a dead
674 end.  Backtrack one character and pick the second alternative in the
675 second group 'd'.
676
677 =item 8
678
679 'd' matches. The second grouping is satisfied, so set $2 to
680 'd'.
681
682 =item 9
683
684 We are at the end of the regexp, so we are done! We have
685 matched 'abcd' out of the string "abcde".
686
687 =back
688
689 There are a couple of things to note about this analysis.  First, the
690 third alternative in the second group 'de' also allows a match, but we
691 stopped before we got to it - at a given character position, leftmost
692 wins.  Second, we were able to get a match at the first character
693 position of the string 'a'.  If there were no matches at the first
694 position, Perl would move to the second character position 'b' and
695 attempt the match all over again.  Only when all possible paths at all
696 possible character positions have been exhausted does Perl give
697 up and declare S<C<$string =~ /(abd|abc)(df|d|de)/;>> to be false.
698
699 Even with all this work, regexp matching happens remarkably fast.  To
700 speed things up, Perl compiles the regexp into a compact sequence of
701 opcodes that can often fit inside a processor cache.  When the code is
702 executed, these opcodes can then run at full throttle and search very
703 quickly.
704
705 =head2 Extracting matches
706
707 The grouping metacharacters C<()> also serve another completely
708 different function: they allow the extraction of the parts of a string
709 that matched.  This is very useful to find out what matched and for
710 text processing in general.  For each grouping, the part that matched
711 inside goes into the special variables C<$1>, C<$2>, etc.  They can be
712 used just as ordinary variables:
713
714     # extract hours, minutes, seconds
715     if ($time =~ /(\d\d):(\d\d):(\d\d)/) {    # match hh:mm:ss format
716         $hours = $1;
717         $minutes = $2;
718         $seconds = $3;
719     }
720
721 Now, we know that in scalar context,
722 S<C<$time =~ /(\d\d):(\d\d):(\d\d)/>> returns a true or false
723 value.  In list context, however, it returns the list of matched values
724 C<($1,$2,$3)>.  So we could write the code more compactly as
725
726     # extract hours, minutes, seconds
727     ($hours, $minutes, $second) = ($time =~ /(\d\d):(\d\d):(\d\d)/);
728
729 If the groupings in a regexp are nested, C<$1> gets the group with the
730 leftmost opening parenthesis, C<$2> the next opening parenthesis,
731 etc.  Here is a regexp with nested groups:
732
733     /(ab(cd|ef)((gi)|j))/;
734      1  2      34
735
736 If this regexp matches, C<$1> contains a string starting with
737 C<'ab'>, C<$2> is either set to C<'cd'> or C<'ef'>, C<$3> equals either
738 C<'gi'> or C<'j'>, and C<$4> is either set to C<'gi'>, just like C<$3>,
739 or it remains undefined.
740
741 For convenience, Perl sets C<$+> to the string held by the highest numbered
742 C<$1>, C<$2>,... that got assigned (and, somewhat related, C<$^N> to the
743 value of the C<$1>, C<$2>,... most-recently assigned; i.e. the C<$1>,
744 C<$2>,... associated with the rightmost closing parenthesis used in the
745 match).
746
747
748 =head2 Backreferences
749
750 Closely associated with the matching variables C<$1>, C<$2>, ... are
751 the I<backreferences> C<\g1>, C<\g2>,...  Backreferences are simply
752 matching variables that can be used I<inside> a regexp.  This is a
753 really nice feature; what matches later in a regexp is made to depend on
754 what matched earlier in the regexp.  Suppose we wanted to look
755 for doubled words in a text, like 'the the'.  The following regexp finds
756 all 3-letter doubles with a space in between:
757
758     /\b(\w\w\w)\s\g1\b/;
759
760 The grouping assigns a value to \g1, so that the same 3-letter sequence
761 is used for both parts.
762
763 A similar task is to find words consisting of two identical parts:
764
765     % simple_grep '^(\w\w\w\w|\w\w\w|\w\w|\w)\g1$' /usr/dict/words
766     beriberi
767     booboo
768     coco
769     mama
770     murmur
771     papa
772
773 The regexp has a single grouping which considers 4-letter
774 combinations, then 3-letter combinations, etc., and uses C<\g1> to look for
775 a repeat.  Although C<$1> and C<\g1> represent the same thing, care should be
776 taken to use matched variables C<$1>, C<$2>,... only I<outside> a regexp
777 and backreferences C<\g1>, C<\g2>,... only I<inside> a regexp; not doing
778 so may lead to surprising and unsatisfactory results.
779
780
781 =head2 Relative backreferences
782
783 Counting the opening parentheses to get the correct number for a
784 backreference is error-prone as soon as there is more than one
785 capturing group.  A more convenient technique became available
786 with Perl 5.10: relative backreferences. To refer to the immediately
787 preceding capture group one now may write C<\g{-1}>, the next but
788 last is available via C<\g{-2}>, and so on.
789
790 Another good reason in addition to readability and maintainability
791 for using relative backreferences is illustrated by the following example,
792 where a simple pattern for matching peculiar strings is used:
793
794     $a99a = '([a-z])(\d)\g2\g1';   # matches a11a, g22g, x33x, etc.
795
796 Now that we have this pattern stored as a handy string, we might feel
797 tempted to use it as a part of some other pattern:
798
799     $line = "code=e99e";
800     if ($line =~ /^(\w+)=$a99a$/){   # unexpected behavior!
801         print "$1 is valid\n";
802     } else {
803         print "bad line: '$line'\n";
804     }
805
806 But this doesn't match, at least not the way one might expect. Only
807 after inserting the interpolated C<$a99a> and looking at the resulting
808 full text of the regexp is it obvious that the backreferences have
809 backfired. The subexpression C<(\w+)> has snatched number 1 and
810 demoted the groups in C<$a99a> by one rank. This can be avoided by
811 using relative backreferences:
812
813     $a99a = '([a-z])(\d)\g{-1}\g{-2}';  # safe for being interpolated
814
815
816 =head2 Named backreferences
817
818 Perl 5.10 also introduced named capture groups and named backreferences.
819 To attach a name to a capturing group, you write either
820 C<< (?<name>...) >> or C<< (?'name'...) >>.  The backreference may
821 then be written as C<\g{name}>.  It is permissible to attach the
822 same name to more than one group, but then only the leftmost one of the
823 eponymous set can be referenced.  Outside of the pattern a named
824 capture group is accessible through the C<%+> hash.
825
826 Assuming that we have to match calendar dates which may be given in one
827 of the three formats yyyy-mm-dd, mm/dd/yyyy or dd.mm.yyyy, we can write
828 three suitable patterns where we use 'd', 'm' and 'y' respectively as the
829 names of the groups capturing the pertaining components of a date. The
830 matching operation combines the three patterns as alternatives:
831
832     $fmt1 = '(?<y>\d\d\d\d)-(?<m>\d\d)-(?<d>\d\d)';
833     $fmt2 = '(?<m>\d\d)/(?<d>\d\d)/(?<y>\d\d\d\d)';
834     $fmt3 = '(?<d>\d\d)\.(?<m>\d\d)\.(?<y>\d\d\d\d)';
835     for my $d qw( 2006-10-21 15.01.2007 10/31/2005 ){
836         if ( $d =~ m{$fmt1|$fmt2|$fmt3} ){
837             print "day=$+{d} month=$+{m} year=$+{y}\n";
838         }
839     }
840
841 If any of the alternatives matches, the hash C<%+> is bound to contain the
842 three key-value pairs.
843
844
845 =head2 Alternative capture group numbering
846
847 Yet another capturing group numbering technique (also as from Perl 5.10)
848 deals with the problem of referring to groups within a set of alternatives.
849 Consider a pattern for matching a time of the day, civil or military style:
850
851     if ( $time =~ /(\d\d|\d):(\d\d)|(\d\d)(\d\d)/ ){
852         # process hour and minute
853     }
854
855 Processing the results requires an additional if statement to determine
856 whether C<$1> and C<$2> or C<$3> and C<$4> contain the goodies. It would
857 be easier if we could use group numbers 1 and 2 in second alternative as
858 well, and this is exactly what the parenthesized construct C<(?|...)>,
859 set around an alternative achieves. Here is an extended version of the
860 previous pattern:
861
862   if($time =~ /(?|(\d\d|\d):(\d\d)|(\d\d)(\d\d))\s+([A-Z][A-Z][A-Z])/){
863       print "hour=$1 minute=$2 zone=$3\n";
864   }
865
866 Within the alternative numbering group, group numbers start at the same
867 position for each alternative. After the group, numbering continues
868 with one higher than the maximum reached across all the alternatives.
869
870 =head2 Position information
871
872 In addition to what was matched, Perl also provides the
873 positions of what was matched as contents of the C<@-> and C<@+>
874 arrays. C<$-[0]> is the position of the start of the entire match and
875 C<$+[0]> is the position of the end. Similarly, C<$-[n]> is the
876 position of the start of the C<$n> match and C<$+[n]> is the position
877 of the end. If C<$n> is undefined, so are C<$-[n]> and C<$+[n]>. Then
878 this code
879
880     $x = "Mmm...donut, thought Homer";
881     $x =~ /^(Mmm|Yech)\.\.\.(donut|peas)/; # matches
882     foreach $exp (1..$#-) {
883         print "Match $exp: '${$exp}' at position ($-[$exp],$+[$exp])\n";
884     }
885
886 prints
887
888     Match 1: 'Mmm' at position (0,3)
889     Match 2: 'donut' at position (6,11)
890
891 Even if there are no groupings in a regexp, it is still possible to
892 find out what exactly matched in a string.  If you use them, Perl
893 will set C<$`> to the part of the string before the match, will set C<$&>
894 to the part of the string that matched, and will set C<$'> to the part
895 of the string after the match.  An example:
896
897     $x = "the cat caught the mouse";
898     $x =~ /cat/;  # $` = 'the ', $& = 'cat', $' = ' caught the mouse'
899     $x =~ /the/;  # $` = '', $& = 'the', $' = ' cat caught the mouse'
900
901 In the second match, C<$`> equals C<''> because the regexp matched at the
902 first character position in the string and stopped; it never saw the
903 second 'the'.
904
905 If your code is to run on Perl versions earlier than
906 5.20, it is worthwhile to note that using C<$`> and C<$'>
907 slows down regexp matching quite a bit, while C<$&> slows it down to a
908 lesser extent, because if they are used in one regexp in a program,
909 they are generated for I<all> regexps in the program.  So if raw
910 performance is a goal of your application, they should be avoided.
911 If you need to extract the corresponding substrings, use C<@-> and
912 C<@+> instead:
913
914     $` is the same as substr( $x, 0, $-[0] )
915     $& is the same as substr( $x, $-[0], $+[0]-$-[0] )
916     $' is the same as substr( $x, $+[0] )
917
918 As of Perl 5.10, the C<${^PREMATCH}>, C<${^MATCH}> and C<${^POSTMATCH}>
919 variables may be used.  These are only set if the C</p> modifier is
920 present.  Consequently they do not penalize the rest of the program.  In
921 Perl 5.20, C<${^PREMATCH}>, C<${^MATCH}> and C<${^POSTMATCH}> are available
922 whether the C</p> has been used or not (the modifier is ignored), and
923 C<$`>, C<$'> and C<$&> do not cause any speed difference.
924
925 =head2 Non-capturing groupings
926
927 A group that is required to bundle a set of alternatives may or may not be
928 useful as a capturing group.  If it isn't, it just creates a superfluous
929 addition to the set of available capture group values, inside as well as
930 outside the regexp.  Non-capturing groupings, denoted by C<(?:regexp)>,
931 still allow the regexp to be treated as a single unit, but don't establish
932 a capturing group at the same time.  Both capturing and non-capturing
933 groupings are allowed to co-exist in the same regexp.  Because there is
934 no extraction, non-capturing groupings are faster than capturing
935 groupings.  Non-capturing groupings are also handy for choosing exactly
936 which parts of a regexp are to be extracted to matching variables:
937
938     # match a number, $1-$4 are set, but we only want $1
939     /([+-]?\ *(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?)/;
940
941     # match a number faster , only $1 is set
942     /([+-]?\ *(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?)/;
943
944     # match a number, get $1 = whole number, $2 = exponent
945     /([+-]?\ *(?:\d+(?:\.\d*)?|\.\d+)(?:[eE]([+-]?\d+))?)/;
946
947 Non-capturing groupings are also useful for removing nuisance
948 elements gathered from a split operation where parentheses are
949 required for some reason:
950
951     $x = '12aba34ba5';
952     @num = split /(a|b)+/, $x;    # @num = ('12','a','34','a','5')
953     @num = split /(?:a|b)+/, $x;  # @num = ('12','34','5')
954
955
956 =head2 Matching repetitions
957
958 The examples in the previous section display an annoying weakness.  We
959 were only matching 3-letter words, or chunks of words of 4 letters or
960 less.  We'd like to be able to match words or, more generally, strings
961 of any length, without writing out tedious alternatives like
962 C<\w\w\w\w|\w\w\w|\w\w|\w>.
963
964 This is exactly the problem the I<quantifier> metacharacters C<?>,
965 C<*>, C<+>, and C<{}> were created for.  They allow us to delimit the
966 number of repeats for a portion of a regexp we consider to be a
967 match.  Quantifiers are put immediately after the character, character
968 class, or grouping that we want to specify.  They have the following
969 meanings:
970
971 =over 4
972
973 =item *
974
975 C<a?> means: match 'a' 1 or 0 times
976
977 =item *
978
979 C<a*> means: match 'a' 0 or more times, i.e., any number of times
980
981 =item *
982
983 C<a+> means: match 'a' 1 or more times, i.e., at least once
984
985 =item *
986
987 C<a{n,m}> means: match at least C<n> times, but not more than C<m>
988 times.
989
990 =item *
991
992 C<a{n,}> means: match at least C<n> or more times
993
994 =item *
995
996 C<a{n}> means: match exactly C<n> times
997
998 =back
999
1000 Here are some examples:
1001
1002     /[a-z]+\s+\d*/;  # match a lowercase word, at least one space, and
1003                      # any number of digits
1004     /(\w+)\s+\g1/;    # match doubled words of arbitrary length
1005     /y(es)?/i;       # matches 'y', 'Y', or a case-insensitive 'yes'
1006     $year =~ /^\d{2,4}$/;  # make sure year is at least 2 but not more
1007                            # than 4 digits
1008     $year =~ /^\d{4}$|^\d{2}$/; # better match; throw out 3-digit dates
1009     $year =~ /^\d{2}(\d{2})?$/; # same thing written differently.
1010                                 # However, this captures the last two
1011                                 # digits in $1 and the other does not.
1012
1013     % simple_grep '^(\w+)\g1$' /usr/dict/words   # isn't this easier?
1014     beriberi
1015     booboo
1016     coco
1017     mama
1018     murmur
1019     papa
1020
1021 For all of these quantifiers, Perl will try to match as much of the
1022 string as possible, while still allowing the regexp to succeed.  Thus
1023 with C</a?.../>, Perl will first try to match the regexp with the C<a>
1024 present; if that fails, Perl will try to match the regexp without the
1025 C<a> present.  For the quantifier C<*>, we get the following:
1026
1027     $x = "the cat in the hat";
1028     $x =~ /^(.*)(cat)(.*)$/; # matches,
1029                              # $1 = 'the '
1030                              # $2 = 'cat'
1031                              # $3 = ' in the hat'
1032
1033 Which is what we might expect, the match finds the only C<cat> in the
1034 string and locks onto it.  Consider, however, this regexp:
1035
1036     $x =~ /^(.*)(at)(.*)$/; # matches,
1037                             # $1 = 'the cat in the h'
1038                             # $2 = 'at'
1039                             # $3 = ''   (0 characters match)
1040
1041 One might initially guess that Perl would find the C<at> in C<cat> and
1042 stop there, but that wouldn't give the longest possible string to the
1043 first quantifier C<.*>.  Instead, the first quantifier C<.*> grabs as
1044 much of the string as possible while still having the regexp match.  In
1045 this example, that means having the C<at> sequence with the final C<at>
1046 in the string.  The other important principle illustrated here is that,
1047 when there are two or more elements in a regexp, the I<leftmost>
1048 quantifier, if there is one, gets to grab as much of the string as
1049 possible, leaving the rest of the regexp to fight over scraps.  Thus in
1050 our example, the first quantifier C<.*> grabs most of the string, while
1051 the second quantifier C<.*> gets the empty string.   Quantifiers that
1052 grab as much of the string as possible are called I<maximal match> or
1053 I<greedy> quantifiers.
1054
1055 When a regexp can match a string in several different ways, we can use
1056 the principles above to predict which way the regexp will match:
1057
1058 =over 4
1059
1060 =item *
1061
1062 Principle 0: Taken as a whole, any regexp will be matched at the
1063 earliest possible position in the string.
1064
1065 =item *
1066
1067 Principle 1: In an alternation C<a|b|c...>, the leftmost alternative
1068 that allows a match for the whole regexp will be the one used.
1069
1070 =item *
1071
1072 Principle 2: The maximal matching quantifiers C<?>, C<*>, C<+> and
1073 C<{n,m}> will in general match as much of the string as possible while
1074 still allowing the whole regexp to match.
1075
1076 =item *
1077
1078 Principle 3: If there are two or more elements in a regexp, the
1079 leftmost greedy quantifier, if any, will match as much of the string
1080 as possible while still allowing the whole regexp to match.  The next
1081 leftmost greedy quantifier, if any, will try to match as much of the
1082 string remaining available to it as possible, while still allowing the
1083 whole regexp to match.  And so on, until all the regexp elements are
1084 satisfied.
1085
1086 =back
1087
1088 As we have seen above, Principle 0 overrides the others. The regexp
1089 will be matched as early as possible, with the other principles
1090 determining how the regexp matches at that earliest character
1091 position.
1092
1093 Here is an example of these principles in action:
1094
1095     $x = "The programming republic of Perl";
1096     $x =~ /^(.+)(e|r)(.*)$/;  # matches,
1097                               # $1 = 'The programming republic of Pe'
1098                               # $2 = 'r'
1099                               # $3 = 'l'
1100
1101 This regexp matches at the earliest string position, C<'T'>.  One
1102 might think that C<e>, being leftmost in the alternation, would be
1103 matched, but C<r> produces the longest string in the first quantifier.
1104
1105     $x =~ /(m{1,2})(.*)$/;  # matches,
1106                             # $1 = 'mm'
1107                             # $2 = 'ing republic of Perl'
1108
1109 Here, The earliest possible match is at the first C<'m'> in
1110 C<programming>. C<m{1,2}> is the first quantifier, so it gets to match
1111 a maximal C<mm>.
1112
1113     $x =~ /.*(m{1,2})(.*)$/;  # matches,
1114                               # $1 = 'm'
1115                               # $2 = 'ing republic of Perl'
1116
1117 Here, the regexp matches at the start of the string. The first
1118 quantifier C<.*> grabs as much as possible, leaving just a single
1119 C<'m'> for the second quantifier C<m{1,2}>.
1120
1121     $x =~ /(.?)(m{1,2})(.*)$/;  # matches,
1122                                 # $1 = 'a'
1123                                 # $2 = 'mm'
1124                                 # $3 = 'ing republic of Perl'
1125
1126 Here, C<.?> eats its maximal one character at the earliest possible
1127 position in the string, C<'a'> in C<programming>, leaving C<m{1,2}>
1128 the opportunity to match both C<m>'s. Finally,
1129
1130     "aXXXb" =~ /(X*)/; # matches with $1 = ''
1131
1132 because it can match zero copies of C<'X'> at the beginning of the
1133 string.  If you definitely want to match at least one C<'X'>, use
1134 C<X+>, not C<X*>.
1135
1136 Sometimes greed is not good.  At times, we would like quantifiers to
1137 match a I<minimal> piece of string, rather than a maximal piece.  For
1138 this purpose, Larry Wall created the I<minimal match> or
1139 I<non-greedy> quantifiers C<??>, C<*?>, C<+?>, and C<{}?>.  These are
1140 the usual quantifiers with a C<?> appended to them.  They have the
1141 following meanings:
1142
1143 =over 4
1144
1145 =item *
1146
1147 C<a??> means: match 'a' 0 or 1 times. Try 0 first, then 1.
1148
1149 =item *
1150
1151 C<a*?> means: match 'a' 0 or more times, i.e., any number of times,
1152 but as few times as possible
1153
1154 =item *
1155
1156 C<a+?> means: match 'a' 1 or more times, i.e., at least once, but
1157 as few times as possible
1158
1159 =item *
1160
1161 C<a{n,m}?> means: match at least C<n> times, not more than C<m>
1162 times, as few times as possible
1163
1164 =item *
1165
1166 C<a{n,}?> means: match at least C<n> times, but as few times as
1167 possible
1168
1169 =item *
1170
1171 C<a{n}?> means: match exactly C<n> times.  Because we match exactly
1172 C<n> times, C<a{n}?> is equivalent to C<a{n}> and is just there for
1173 notational consistency.
1174
1175 =back
1176
1177 Let's look at the example above, but with minimal quantifiers:
1178
1179     $x = "The programming republic of Perl";
1180     $x =~ /^(.+?)(e|r)(.*)$/; # matches,
1181                               # $1 = 'Th'
1182                               # $2 = 'e'
1183                               # $3 = ' programming republic of Perl'
1184
1185 The minimal string that will allow both the start of the string C<^>
1186 and the alternation to match is C<Th>, with the alternation C<e|r>
1187 matching C<e>.  The second quantifier C<.*> is free to gobble up the
1188 rest of the string.
1189
1190     $x =~ /(m{1,2}?)(.*?)$/;  # matches,
1191                               # $1 = 'm'
1192                               # $2 = 'ming republic of Perl'
1193
1194 The first string position that this regexp can match is at the first
1195 C<'m'> in C<programming>. At this position, the minimal C<m{1,2}?>
1196 matches just one C<'m'>.  Although the second quantifier C<.*?> would
1197 prefer to match no characters, it is constrained by the end-of-string
1198 anchor C<$> to match the rest of the string.
1199
1200     $x =~ /(.*?)(m{1,2}?)(.*)$/;  # matches,
1201                                   # $1 = 'The progra'
1202                                   # $2 = 'm'
1203                                   # $3 = 'ming republic of Perl'
1204
1205 In this regexp, you might expect the first minimal quantifier C<.*?>
1206 to match the empty string, because it is not constrained by a C<^>
1207 anchor to match the beginning of the word.  Principle 0 applies here,
1208 however.  Because it is possible for the whole regexp to match at the
1209 start of the string, it I<will> match at the start of the string.  Thus
1210 the first quantifier has to match everything up to the first C<m>.  The
1211 second minimal quantifier matches just one C<m> and the third
1212 quantifier matches the rest of the string.
1213
1214     $x =~ /(.??)(m{1,2})(.*)$/;  # matches,
1215                                  # $1 = 'a'
1216                                  # $2 = 'mm'
1217                                  # $3 = 'ing republic of Perl'
1218
1219 Just as in the previous regexp, the first quantifier C<.??> can match
1220 earliest at position C<'a'>, so it does.  The second quantifier is
1221 greedy, so it matches C<mm>, and the third matches the rest of the
1222 string.
1223
1224 We can modify principle 3 above to take into account non-greedy
1225 quantifiers:
1226
1227 =over 4
1228
1229 =item *
1230
1231 Principle 3: If there are two or more elements in a regexp, the
1232 leftmost greedy (non-greedy) quantifier, if any, will match as much
1233 (little) of the string as possible while still allowing the whole
1234 regexp to match.  The next leftmost greedy (non-greedy) quantifier, if
1235 any, will try to match as much (little) of the string remaining
1236 available to it as possible, while still allowing the whole regexp to
1237 match.  And so on, until all the regexp elements are satisfied.
1238
1239 =back
1240
1241 Just like alternation, quantifiers are also susceptible to
1242 backtracking.  Here is a step-by-step analysis of the example
1243
1244     $x = "the cat in the hat";
1245     $x =~ /^(.*)(at)(.*)$/; # matches,
1246                             # $1 = 'the cat in the h'
1247                             # $2 = 'at'
1248                             # $3 = ''   (0 matches)
1249
1250 =over 4
1251
1252 =item 0
1253
1254 Start with the first letter in the string 't'.
1255
1256 =item 1
1257
1258 The first quantifier '.*' starts out by matching the whole
1259 string 'the cat in the hat'.
1260
1261 =item 2
1262
1263 'a' in the regexp element 'at' doesn't match the end of the
1264 string.  Backtrack one character.
1265
1266 =item 3
1267
1268 'a' in the regexp element 'at' still doesn't match the last
1269 letter of the string 't', so backtrack one more character.
1270
1271 =item 4
1272
1273 Now we can match the 'a' and the 't'.
1274
1275 =item 5
1276
1277 Move on to the third element '.*'.  Since we are at the end of
1278 the string and '.*' can match 0 times, assign it the empty string.
1279
1280 =item 6
1281
1282 We are done!
1283
1284 =back
1285
1286 Most of the time, all this moving forward and backtracking happens
1287 quickly and searching is fast. There are some pathological regexps,
1288 however, whose execution time exponentially grows with the size of the
1289 string.  A typical structure that blows up in your face is of the form
1290
1291     /(a|b+)*/;
1292
1293 The problem is the nested indeterminate quantifiers.  There are many
1294 different ways of partitioning a string of length n between the C<+>
1295 and C<*>: one repetition with C<b+> of length n, two repetitions with
1296 the first C<b+> length k and the second with length n-k, m repetitions
1297 whose bits add up to length n, etc.  In fact there are an exponential
1298 number of ways to partition a string as a function of its length.  A
1299 regexp may get lucky and match early in the process, but if there is
1300 no match, Perl will try I<every> possibility before giving up.  So be
1301 careful with nested C<*>'s, C<{n,m}>'s, and C<+>'s.  The book
1302 I<Mastering Regular Expressions> by Jeffrey Friedl gives a wonderful
1303 discussion of this and other efficiency issues.
1304
1305
1306 =head2 Possessive quantifiers
1307
1308 Backtracking during the relentless search for a match may be a waste
1309 of time, particularly when the match is bound to fail.  Consider
1310 the simple pattern
1311
1312     /^\w+\s+\w+$/; # a word, spaces, a word
1313
1314 Whenever this is applied to a string which doesn't quite meet the
1315 pattern's expectations such as S<C<"abc  ">> or S<C<"abc  def ">>,
1316 the regex engine will backtrack, approximately once for each character
1317 in the string.  But we know that there is no way around taking I<all>
1318 of the initial word characters to match the first repetition, that I<all>
1319 spaces must be eaten by the middle part, and the same goes for the second
1320 word.
1321
1322 With the introduction of the I<possessive quantifiers> in Perl 5.10, we
1323 have a way of instructing the regex engine not to backtrack, with the
1324 usual quantifiers with a C<+> appended to them.  This makes them greedy as
1325 well as stingy; once they succeed they won't give anything back to permit
1326 another solution. They have the following meanings:
1327
1328 =over 4
1329
1330 =item *
1331
1332 C<a{n,m}+> means: match at least C<n> times, not more than C<m> times,
1333 as many times as possible, and don't give anything up. C<a?+> is short
1334 for C<a{0,1}+>
1335
1336 =item *
1337
1338 C<a{n,}+> means: match at least C<n> times, but as many times as possible,
1339 and don't give anything up. C<a*+> is short for C<a{0,}+> and C<a++> is
1340 short for C<a{1,}+>.
1341
1342 =item *
1343
1344 C<a{n}+> means: match exactly C<n> times.  It is just there for
1345 notational consistency.
1346
1347 =back
1348
1349 These possessive quantifiers represent a special case of a more general
1350 concept, the I<independent subexpression>, see below.
1351
1352 As an example where a possessive quantifier is suitable we consider
1353 matching a quoted string, as it appears in several programming languages.
1354 The backslash is used as an escape character that indicates that the
1355 next character is to be taken literally, as another character for the
1356 string.  Therefore, after the opening quote, we expect a (possibly
1357 empty) sequence of alternatives: either some character except an
1358 unescaped quote or backslash or an escaped character.
1359
1360     /"(?:[^"\\]++|\\.)*+"/;
1361
1362
1363 =head2 Building a regexp
1364
1365 At this point, we have all the basic regexp concepts covered, so let's
1366 give a more involved example of a regular expression.  We will build a
1367 regexp that matches numbers.
1368
1369 The first task in building a regexp is to decide what we want to match
1370 and what we want to exclude.  In our case, we want to match both
1371 integers and floating point numbers and we want to reject any string
1372 that isn't a number.
1373
1374 The next task is to break the problem down into smaller problems that
1375 are easily converted into a regexp.
1376
1377 The simplest case is integers.  These consist of a sequence of digits,
1378 with an optional sign in front.  The digits we can represent with
1379 C<\d+> and the sign can be matched with C<[+-]>.  Thus the integer
1380 regexp is
1381
1382     /[+-]?\d+/;  # matches integers
1383
1384 A floating point number potentially has a sign, an integral part, a
1385 decimal point, a fractional part, and an exponent.  One or more of these
1386 parts is optional, so we need to check out the different
1387 possibilities.  Floating point numbers which are in proper form include
1388 123., 0.345, .34, -1e6, and 25.4E-72.  As with integers, the sign out
1389 front is completely optional and can be matched by C<[+-]?>.  We can
1390 see that if there is no exponent, floating point numbers must have a
1391 decimal point, otherwise they are integers.  We might be tempted to
1392 model these with C<\d*\.\d*>, but this would also match just a single
1393 decimal point, which is not a number.  So the three cases of floating
1394 point number without exponent are
1395
1396    /[+-]?\d+\./;  # 1., 321., etc.
1397    /[+-]?\.\d+/;  # .1, .234, etc.
1398    /[+-]?\d+\.\d+/;  # 1.0, 30.56, etc.
1399
1400 These can be combined into a single regexp with a three-way alternation:
1401
1402    /[+-]?(\d+\.\d+|\d+\.|\.\d+)/;  # floating point, no exponent
1403
1404 In this alternation, it is important to put C<'\d+\.\d+'> before
1405 C<'\d+\.'>.  If C<'\d+\.'> were first, the regexp would happily match that
1406 and ignore the fractional part of the number.
1407
1408 Now consider floating point numbers with exponents.  The key
1409 observation here is that I<both> integers and numbers with decimal
1410 points are allowed in front of an exponent.  Then exponents, like the
1411 overall sign, are independent of whether we are matching numbers with
1412 or without decimal points, and can be 'decoupled' from the
1413 mantissa.  The overall form of the regexp now becomes clear:
1414
1415     /^(optional sign)(integer | f.p. mantissa)(optional exponent)$/;
1416
1417 The exponent is an C<e> or C<E>, followed by an integer.  So the
1418 exponent regexp is
1419
1420    /[eE][+-]?\d+/;  # exponent
1421
1422 Putting all the parts together, we get a regexp that matches numbers:
1423
1424    /^[+-]?(\d+\.\d+|\d+\.|\.\d+|\d+)([eE][+-]?\d+)?$/;  # Ta da!
1425
1426 Long regexps like this may impress your friends, but can be hard to
1427 decipher.  In complex situations like this, the C<//x> modifier for a
1428 match is invaluable.  It allows one to put nearly arbitrary whitespace
1429 and comments into a regexp without affecting their meaning.  Using it,
1430 we can rewrite our 'extended' regexp in the more pleasing form
1431
1432    /^
1433       [+-]?         # first, match an optional sign
1434       (             # then match integers or f.p. mantissas:
1435           \d+\.\d+  # mantissa of the form a.b
1436          |\d+\.     # mantissa of the form a.
1437          |\.\d+     # mantissa of the form .b
1438          |\d+       # integer of the form a
1439       )
1440       ([eE][+-]?\d+)?  # finally, optionally match an exponent
1441    $/x;
1442
1443 If whitespace is mostly irrelevant, how does one include space
1444 characters in an extended regexp? The answer is to backslash it
1445 S<C<'\ '>> or put it in a character class S<C<[ ]>>.  The same thing
1446 goes for pound signs: use C<\#> or C<[#]>.  For instance, Perl allows
1447 a space between the sign and the mantissa or integer, and we could add
1448 this to our regexp as follows:
1449
1450    /^
1451       [+-]?\ *      # first, match an optional sign *and space*
1452       (             # then match integers or f.p. mantissas:
1453           \d+\.\d+  # mantissa of the form a.b
1454          |\d+\.     # mantissa of the form a.
1455          |\.\d+     # mantissa of the form .b
1456          |\d+       # integer of the form a
1457       )
1458       ([eE][+-]?\d+)?  # finally, optionally match an exponent
1459    $/x;
1460
1461 In this form, it is easier to see a way to simplify the
1462 alternation.  Alternatives 1, 2, and 4 all start with C<\d+>, so it
1463 could be factored out:
1464
1465    /^
1466       [+-]?\ *      # first, match an optional sign
1467       (             # then match integers or f.p. mantissas:
1468           \d+       # start out with a ...
1469           (
1470               \.\d* # mantissa of the form a.b or a.
1471           )?        # ? takes care of integers of the form a
1472          |\.\d+     # mantissa of the form .b
1473       )
1474       ([eE][+-]?\d+)?  # finally, optionally match an exponent
1475    $/x;
1476
1477 or written in the compact form,
1478
1479     /^[+-]?\ *(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?$/;
1480
1481 This is our final regexp.  To recap, we built a regexp by
1482
1483 =over 4
1484
1485 =item *
1486
1487 specifying the task in detail,
1488
1489 =item *
1490
1491 breaking down the problem into smaller parts,
1492
1493 =item *
1494
1495 translating the small parts into regexps,
1496
1497 =item *
1498
1499 combining the regexps,
1500
1501 =item *
1502
1503 and optimizing the final combined regexp.
1504
1505 =back
1506
1507 These are also the typical steps involved in writing a computer
1508 program.  This makes perfect sense, because regular expressions are
1509 essentially programs written in a little computer language that specifies
1510 patterns.
1511
1512 =head2 Using regular expressions in Perl
1513
1514 The last topic of Part 1 briefly covers how regexps are used in Perl
1515 programs.  Where do they fit into Perl syntax?
1516
1517 We have already introduced the matching operator in its default
1518 C</regexp/> and arbitrary delimiter C<m!regexp!> forms.  We have used
1519 the binding operator C<=~> and its negation C<!~> to test for string
1520 matches.  Associated with the matching operator, we have discussed the
1521 single line C<//s>, multi-line C<//m>, case-insensitive C<//i> and
1522 extended C<//x> modifiers.  There are a few more things you might
1523 want to know about matching operators.
1524
1525 =head3 Prohibiting substitution
1526
1527 If you change C<$pattern> after the first substitution happens, Perl
1528 will ignore it.  If you don't want any substitutions at all, use the
1529 special delimiter C<m''>:
1530
1531     @pattern = ('Seuss');
1532     while (<>) {
1533         print if m'@pattern';  # matches literal '@pattern', not 'Seuss'
1534     }
1535
1536 Similar to strings, C<m''> acts like apostrophes on a regexp; all other
1537 C<m> delimiters act like quotes.  If the regexp evaluates to the empty string,
1538 the regexp in the I<last successful match> is used instead.  So we have
1539
1540     "dog" =~ /d/;  # 'd' matches
1541     "dogbert =~ //;  # this matches the 'd' regexp used before
1542
1543
1544 =head3 Global matching
1545
1546 The final two modifiers we will discuss here,
1547 C<//g> and C<//c>, concern multiple matches.
1548 The modifier C<//g> stands for global matching and allows the
1549 matching operator to match within a string as many times as possible.
1550 In scalar context, successive invocations against a string will have
1551 C<//g> jump from match to match, keeping track of position in the
1552 string as it goes along.  You can get or set the position with the
1553 C<pos()> function.
1554
1555 The use of C<//g> is shown in the following example.  Suppose we have
1556 a string that consists of words separated by spaces.  If we know how
1557 many words there are in advance, we could extract the words using
1558 groupings:
1559
1560     $x = "cat dog house"; # 3 words
1561     $x =~ /^\s*(\w+)\s+(\w+)\s+(\w+)\s*$/; # matches,
1562                                            # $1 = 'cat'
1563                                            # $2 = 'dog'
1564                                            # $3 = 'house'
1565
1566 But what if we had an indeterminate number of words? This is the sort
1567 of task C<//g> was made for.  To extract all words, form the simple
1568 regexp C<(\w+)> and loop over all matches with C</(\w+)/g>:
1569
1570     while ($x =~ /(\w+)/g) {
1571         print "Word is $1, ends at position ", pos $x, "\n";
1572     }
1573
1574 prints
1575
1576     Word is cat, ends at position 3
1577     Word is dog, ends at position 7
1578     Word is house, ends at position 13
1579
1580 A failed match or changing the target string resets the position.  If
1581 you don't want the position reset after failure to match, add the
1582 C<//c>, as in C</regexp/gc>.  The current position in the string is
1583 associated with the string, not the regexp.  This means that different
1584 strings have different positions and their respective positions can be
1585 set or read independently.
1586
1587 In list context, C<//g> returns a list of matched groupings, or if
1588 there are no groupings, a list of matches to the whole regexp.  So if
1589 we wanted just the words, we could use
1590
1591     @words = ($x =~ /(\w+)/g);  # matches,
1592                                 # $words[0] = 'cat'
1593                                 # $words[1] = 'dog'
1594                                 # $words[2] = 'house'
1595
1596 Closely associated with the C<//g> modifier is the C<\G> anchor.  The
1597 C<\G> anchor matches at the point where the previous C<//g> match left
1598 off.  C<\G> allows us to easily do context-sensitive matching:
1599
1600     $metric = 1;  # use metric units
1601     ...
1602     $x = <FILE>;  # read in measurement
1603     $x =~ /^([+-]?\d+)\s*/g;  # get magnitude
1604     $weight = $1;
1605     if ($metric) { # error checking
1606         print "Units error!" unless $x =~ /\Gkg\./g;
1607     }
1608     else {
1609         print "Units error!" unless $x =~ /\Glbs\./g;
1610     }
1611     $x =~ /\G\s+(widget|sprocket)/g;  # continue processing
1612
1613 The combination of C<//g> and C<\G> allows us to process the string a
1614 bit at a time and use arbitrary Perl logic to decide what to do next.
1615 Currently, the C<\G> anchor is only fully supported when used to anchor
1616 to the start of the pattern.
1617
1618 C<\G> is also invaluable in processing fixed-length records with
1619 regexps.  Suppose we have a snippet of coding region DNA, encoded as
1620 base pair letters C<ATCGTTGAAT...> and we want to find all the stop
1621 codons C<TGA>.  In a coding region, codons are 3-letter sequences, so
1622 we can think of the DNA snippet as a sequence of 3-letter records.  The
1623 naive regexp
1624
1625     # expanded, this is "ATC GTT GAA TGC AAA TGA CAT GAC"
1626     $dna = "ATCGTTGAATGCAAATGACATGAC";
1627     $dna =~ /TGA/;
1628
1629 doesn't work; it may match a C<TGA>, but there is no guarantee that
1630 the match is aligned with codon boundaries, e.g., the substring
1631 S<C<GTT GAA>> gives a match.  A better solution is
1632
1633     while ($dna =~ /(\w\w\w)*?TGA/g) {  # note the minimal *?
1634         print "Got a TGA stop codon at position ", pos $dna, "\n";
1635     }
1636
1637 which prints
1638
1639     Got a TGA stop codon at position 18
1640     Got a TGA stop codon at position 23
1641
1642 Position 18 is good, but position 23 is bogus.  What happened?
1643
1644 The answer is that our regexp works well until we get past the last
1645 real match.  Then the regexp will fail to match a synchronized C<TGA>
1646 and start stepping ahead one character position at a time, not what we
1647 want.  The solution is to use C<\G> to anchor the match to the codon
1648 alignment:
1649
1650     while ($dna =~ /\G(\w\w\w)*?TGA/g) {
1651         print "Got a TGA stop codon at position ", pos $dna, "\n";
1652     }
1653
1654 This prints
1655
1656     Got a TGA stop codon at position 18
1657
1658 which is the correct answer.  This example illustrates that it is
1659 important not only to match what is desired, but to reject what is not
1660 desired.
1661
1662 (There are other regexp modifiers that are available, such as
1663 C<//o>, but their specialized uses are beyond the
1664 scope of this introduction.  )
1665
1666 =head3 Search and replace
1667
1668 Regular expressions also play a big role in I<search and replace>
1669 operations in Perl.  Search and replace is accomplished with the
1670 C<s///> operator.  The general form is
1671 C<s/regexp/replacement/modifiers>, with everything we know about
1672 regexps and modifiers applying in this case as well.  The
1673 C<replacement> is a Perl double-quoted string that replaces in the
1674 string whatever is matched with the C<regexp>.  The operator C<=~> is
1675 also used here to associate a string with C<s///>.  If matching
1676 against C<$_>, the S<C<$_ =~>> can be dropped.  If there is a match,
1677 C<s///> returns the number of substitutions made; otherwise it returns
1678 false.  Here are a few examples:
1679
1680     $x = "Time to feed the cat!";
1681     $x =~ s/cat/hacker/;   # $x contains "Time to feed the hacker!"
1682     if ($x =~ s/^(Time.*hacker)!$/$1 now!/) {
1683         $more_insistent = 1;
1684     }
1685     $y = "'quoted words'";
1686     $y =~ s/^'(.*)'$/$1/;  # strip single quotes,
1687                            # $y contains "quoted words"
1688
1689 In the last example, the whole string was matched, but only the part
1690 inside the single quotes was grouped.  With the C<s///> operator, the
1691 matched variables C<$1>, C<$2>, etc. are immediately available for use
1692 in the replacement expression, so we use C<$1> to replace the quoted
1693 string with just what was quoted.  With the global modifier, C<s///g>
1694 will search and replace all occurrences of the regexp in the string:
1695
1696     $x = "I batted 4 for 4";
1697     $x =~ s/4/four/;   # doesn't do it all:
1698                        # $x contains "I batted four for 4"
1699     $x = "I batted 4 for 4";
1700     $x =~ s/4/four/g;  # does it all:
1701                        # $x contains "I batted four for four"
1702
1703 If you prefer 'regex' over 'regexp' in this tutorial, you could use
1704 the following program to replace it:
1705
1706     % cat > simple_replace
1707     #!/usr/bin/perl
1708     $regexp = shift;
1709     $replacement = shift;
1710     while (<>) {
1711         s/$regexp/$replacement/g;
1712         print;
1713     }
1714     ^D
1715
1716     % simple_replace regexp regex perlretut.pod
1717
1718 In C<simple_replace> we used the C<s///g> modifier to replace all
1719 occurrences of the regexp on each line.  (Even though the regular
1720 expression appears in a loop, Perl is smart enough to compile it
1721 only once.)  As with C<simple_grep>, both the
1722 C<print> and the C<s/$regexp/$replacement/g> use C<$_> implicitly.
1723
1724 If you don't want C<s///> to change your original variable you can use
1725 the non-destructive substitute modifier, C<s///r>.  This changes the
1726 behavior so that C<s///r> returns the final substituted string
1727 (instead of the number of substitutions):
1728
1729     $x = "I like dogs.";
1730     $y = $x =~ s/dogs/cats/r;
1731     print "$x $y\n";
1732
1733 That example will print "I like dogs. I like cats". Notice the original
1734 C<$x> variable has not been affected. The overall
1735 result of the substitution is instead stored in C<$y>. If the
1736 substitution doesn't affect anything then the original string is
1737 returned:
1738
1739     $x = "I like dogs.";
1740     $y = $x =~ s/elephants/cougars/r;
1741     print "$x $y\n"; # prints "I like dogs. I like dogs."
1742
1743 One other interesting thing that the C<s///r> flag allows is chaining
1744 substitutions:
1745
1746     $x = "Cats are great.";
1747     print $x =~ s/Cats/Dogs/r =~ s/Dogs/Frogs/r =~
1748         s/Frogs/Hedgehogs/r, "\n";
1749     # prints "Hedgehogs are great."
1750
1751 A modifier available specifically to search and replace is the
1752 C<s///e> evaluation modifier.  C<s///e> treats the
1753 replacement text as Perl code, rather than a double-quoted
1754 string.  The value that the code returns is substituted for the
1755 matched substring.  C<s///e> is useful if you need to do a bit of
1756 computation in the process of replacing text.  This example counts
1757 character frequencies in a line:
1758
1759     $x = "Bill the cat";
1760     $x =~ s/(.)/$chars{$1}++;$1/eg; # final $1 replaces char with itself
1761     print "frequency of '$_' is $chars{$_}\n"
1762         foreach (sort {$chars{$b} <=> $chars{$a}} keys %chars);
1763
1764 This prints
1765
1766     frequency of ' ' is 2
1767     frequency of 't' is 2
1768     frequency of 'l' is 2
1769     frequency of 'B' is 1
1770     frequency of 'c' is 1
1771     frequency of 'e' is 1
1772     frequency of 'h' is 1
1773     frequency of 'i' is 1
1774     frequency of 'a' is 1
1775
1776 As with the match C<m//> operator, C<s///> can use other delimiters,
1777 such as C<s!!!> and C<s{}{}>, and even C<s{}//>.  If single quotes are
1778 used C<s'''>, then the regexp and replacement are
1779 treated as single-quoted strings and there are no
1780 variable substitutions.  C<s///> in list context
1781 returns the same thing as in scalar context, i.e., the number of
1782 matches.
1783
1784 =head3 The split function
1785
1786 The C<split()> function is another place where a regexp is used.
1787 C<split /regexp/, string, limit> separates the C<string> operand into
1788 a list of substrings and returns that list.  The regexp must be designed
1789 to match whatever constitutes the separators for the desired substrings.
1790 The C<limit>, if present, constrains splitting into no more than C<limit>
1791 number of strings.  For example, to split a string into words, use
1792
1793     $x = "Calvin and Hobbes";
1794     @words = split /\s+/, $x;  # $word[0] = 'Calvin'
1795                                # $word[1] = 'and'
1796                                # $word[2] = 'Hobbes'
1797
1798 If the empty regexp C<//> is used, the regexp always matches and
1799 the string is split into individual characters.  If the regexp has
1800 groupings, then the resulting list contains the matched substrings from the
1801 groupings as well.  For instance,
1802
1803     $x = "/usr/bin/perl";
1804     @dirs = split m!/!, $x;  # $dirs[0] = ''
1805                              # $dirs[1] = 'usr'
1806                              # $dirs[2] = 'bin'
1807                              # $dirs[3] = 'perl'
1808     @parts = split m!(/)!, $x;  # $parts[0] = ''
1809                                 # $parts[1] = '/'
1810                                 # $parts[2] = 'usr'
1811                                 # $parts[3] = '/'
1812                                 # $parts[4] = 'bin'
1813                                 # $parts[5] = '/'
1814                                 # $parts[6] = 'perl'
1815
1816 Since the first character of $x matched the regexp, C<split> prepended
1817 an empty initial element to the list.
1818
1819 If you have read this far, congratulations! You now have all the basic
1820 tools needed to use regular expressions to solve a wide range of text
1821 processing problems.  If this is your first time through the tutorial,
1822 why not stop here and play around with regexps a while....  S<Part 2>
1823 concerns the more esoteric aspects of regular expressions and those
1824 concepts certainly aren't needed right at the start.
1825
1826 =head1 Part 2: Power tools
1827
1828 OK, you know the basics of regexps and you want to know more.  If
1829 matching regular expressions is analogous to a walk in the woods, then
1830 the tools discussed in Part 1 are analogous to topo maps and a
1831 compass, basic tools we use all the time.  Most of the tools in part 2
1832 are analogous to flare guns and satellite phones.  They aren't used
1833 too often on a hike, but when we are stuck, they can be invaluable.
1834
1835 What follows are the more advanced, less used, or sometimes esoteric
1836 capabilities of Perl regexps.  In Part 2, we will assume you are
1837 comfortable with the basics and concentrate on the advanced features.
1838
1839 =head2 More on characters, strings, and character classes
1840
1841 There are a number of escape sequences and character classes that we
1842 haven't covered yet.
1843
1844 There are several escape sequences that convert characters or strings
1845 between upper and lower case, and they are also available within
1846 patterns.  C<\l> and C<\u> convert the next character to lower or
1847 upper case, respectively:
1848
1849     $x = "perl";
1850     $string =~ /\u$x/;  # matches 'Perl' in $string
1851     $x = "M(rs?|s)\\."; # note the double backslash
1852     $string =~ /\l$x/;  # matches 'mr.', 'mrs.', and 'ms.',
1853
1854 A C<\L> or C<\U> indicates a lasting conversion of case, until
1855 terminated by C<\E> or thrown over by another C<\U> or C<\L>:
1856
1857     $x = "This word is in lower case:\L SHOUT\E";
1858     $x =~ /shout/;       # matches
1859     $x = "I STILL KEYPUNCH CARDS FOR MY 360"
1860     $x =~ /\Ukeypunch/;  # matches punch card string
1861
1862 If there is no C<\E>, case is converted until the end of the
1863 string. The regexps C<\L\u$word> or C<\u\L$word> convert the first
1864 character of C<$word> to uppercase and the rest of the characters to
1865 lowercase.
1866
1867 Control characters can be escaped with C<\c>, so that a control-Z
1868 character would be matched with C<\cZ>.  The escape sequence
1869 C<\Q>...C<\E> quotes, or protects most non-alphabetic characters.   For
1870 instance,
1871
1872     $x = "\QThat !^*&%~& cat!";
1873     $x =~ /\Q!^*&%~&\E/;  # check for rough language
1874
1875 It does not protect C<$> or C<@>, so that variables can still be
1876 substituted.
1877
1878 C<\Q>, C<\L>, C<\l>, C<\U>, C<\u> and C<\E> are actually part of
1879 double-quotish syntax, and not part of regexp syntax proper.  They will
1880 work if they appear in a regular expression embedded directly in a
1881 program, but not when contained in a string that is interpolated in a
1882 pattern.
1883
1884 Perl regexps can handle more than just the
1885 standard ASCII character set.  Perl supports I<Unicode>, a standard
1886 for representing the alphabets from virtually all of the world's written
1887 languages, and a host of symbols.  Perl's text strings are Unicode strings, so
1888 they can contain characters with a value (codepoint or character number) higher
1889 than 255.
1890
1891 What does this mean for regexps? Well, regexp users don't need to know
1892 much about Perl's internal representation of strings.  But they do need
1893 to know 1) how to represent Unicode characters in a regexp and 2) that
1894 a matching operation will treat the string to be searched as a sequence
1895 of characters, not bytes.  The answer to 1) is that Unicode characters
1896 greater than C<chr(255)> are represented using the C<\x{hex}> notation, because
1897 \x hex (without curly braces) doesn't go further than 255.  (Starting in Perl
1898 5.14, if you're an octal fan, you can also use C<\o{oct}>.)
1899
1900     /\x{263a}/;  # match a Unicode smiley face :)
1901
1902 B<NOTE>: In Perl 5.6.0 it used to be that one needed to say C<use
1903 utf8> to use any Unicode features.  This is no more the case: for
1904 almost all Unicode processing, the explicit C<utf8> pragma is not
1905 needed.  (The only case where it matters is if your Perl script is in
1906 Unicode and encoded in UTF-8, then an explicit C<use utf8> is needed.)
1907
1908 Figuring out the hexadecimal sequence of a Unicode character you want
1909 or deciphering someone else's hexadecimal Unicode regexp is about as
1910 much fun as programming in machine code.  So another way to specify
1911 Unicode characters is to use the I<named character> escape
1912 sequence C<\N{I<name>}>.  I<name> is a name for the Unicode character, as
1913 specified in the Unicode standard.  For instance, if we wanted to
1914 represent or match the astrological sign for the planet Mercury, we
1915 could use
1916
1917     $x = "abc\N{MERCURY}def";
1918     $x =~ /\N{MERCURY}/;   # matches
1919
1920 One can also use "short" names:
1921
1922     print "\N{GREEK SMALL LETTER SIGMA} is called sigma.\n";
1923     print "\N{greek:Sigma} is an upper-case sigma.\n";
1924
1925 You can also restrict names to a certain alphabet by specifying the
1926 L<charnames> pragma:
1927
1928     use charnames qw(greek);
1929     print "\N{sigma} is Greek sigma\n";
1930
1931 An index of character names is available on-line from the Unicode
1932 Consortium, L<http://www.unicode.org/charts/charindex.html>; explanatory
1933 material with links to other resources at
1934 L<http://www.unicode.org/standard/where>.
1935
1936 The answer to requirement 2) is that a regexp (mostly)
1937 uses Unicode characters.  The "mostly" is for messy backward
1938 compatibility reasons, but starting in Perl 5.14, any regex compiled in
1939 the scope of a C<use feature 'unicode_strings'> (which is automatically
1940 turned on within the scope of a C<use 5.012> or higher) will turn that
1941 "mostly" into "always".  If you want to handle Unicode properly, you
1942 should ensure that C<'unicode_strings'> is turned on.
1943 Internally, this is encoded to bytes using either UTF-8 or a native 8
1944 bit encoding, depending on the history of the string, but conceptually
1945 it is a sequence of characters, not bytes. See L<perlunitut> for a
1946 tutorial about that.
1947
1948 Let us now discuss Unicode character classes.  Just as with Unicode
1949 characters, there are named Unicode character classes represented by the
1950 C<\p{name}> escape sequence.  Closely associated is the C<\P{name}>
1951 character class, which is the negation of the C<\p{name}> class.  For
1952 example, to match lower and uppercase characters,
1953
1954     $x = "BOB";
1955     $x =~ /^\p{IsUpper}/;   # matches, uppercase char class
1956     $x =~ /^\P{IsUpper}/;   # doesn't match, char class sans uppercase
1957     $x =~ /^\p{IsLower}/;   # doesn't match, lowercase char class
1958     $x =~ /^\P{IsLower}/;   # matches, char class sans lowercase
1959
1960 (The "Is" is optional.)
1961
1962 Here is the association between some Perl named classes and the
1963 traditional Unicode classes:
1964
1965   Perl class  Unicode class name or regular expression
1966   name  
1967
1968   IsAlpha     /^[LM]/
1969   IsAlnum     /^[LMN]/
1970   IsASCII     $code <= 127
1971   IsCntrl     /^C/
1972   IsBlank     $code =~ /^(0020|0009)$/ || /^Z[^lp]/
1973   IsDigit     Nd
1974   IsGraph     /^([LMNPS]|Co)/
1975   IsLower     Ll
1976   IsPrint     /^([LMNPS]|Co|Zs)/
1977   IsPunct     /^P/
1978   IsSpace     /^Z/ || ($code =~ /^(0009|000A|000B|000C|000D)$/
1979   IsSpacePerl /^Z/ || ($code =~ /^(0009|000A|000C|000D|0085|2028|2029)$/
1980   IsUpper     /^L[ut]/
1981   IsWord      /^[LMN]/ || $code eq "005F"
1982   IsXDigit    $code =~ /^00(3[0-9]|[46][1-6])$/
1983
1984 You can also use the official Unicode class names with C<\p> and
1985 C<\P>, like C<\p{L}> for Unicode 'letters', C<\p{Lu}> for uppercase
1986 letters, or C<\P{Nd}> for non-digits.  If a C<name> is just one
1987 letter, the braces can be dropped.  For instance, C<\pM> is the
1988 character class of Unicode 'marks', for example accent marks.
1989 For the full list see L<perlunicode>.
1990
1991 Unicode has also been separated into various sets of characters
1992 which you can test with C<\p{...}> (in) and C<\P{...}> (not in).
1993 To test whether a character is (or is not) an element of a script
1994 you would use the script name, for example C<\p{Latin}>, C<\p{Greek}>,
1995 or C<\P{Katakana}>.
1996
1997 What we have described so far is the single form of the C<\p{...}> character
1998 classes.  There is also a compound form which you may run into.  These
1999 look like C<\p{name=value}> or C<\p{name:value}> (the equals sign and colon
2000 can be used interchangeably).  These are more general than the single form,
2001 and in fact most of the single forms are just Perl-defined shortcuts for common
2002 compound forms.  For example, the script examples in the previous paragraph
2003 could be written equivalently as C<\p{Script=Latin}>, C<\p{Script:Greek}>, and
2004 C<\P{script=katakana}> (case is irrelevant between the C<{}> braces).  You may
2005 never have to use the compound forms, but sometimes it is necessary, and their
2006 use can make your code easier to understand.
2007
2008 C<\X> is an abbreviation for a character class that comprises
2009 a Unicode I<extended grapheme cluster>.  This represents a "logical character":
2010 what appears to be a single character, but may be represented internally by more
2011 than one.  As an example, using the Unicode full names, e.g., S<C<A + COMBINING
2012 RING>> is a grapheme cluster with base character C<A> and combining character
2013 S<C<COMBINING RING>>, which translates in Danish to A with the circle atop it,
2014 as in the word Angstrom.
2015
2016 For the full and latest information about Unicode see the latest
2017 Unicode standard, or the Unicode Consortium's website L<http://www.unicode.org>
2018
2019 As if all those classes weren't enough, Perl also defines POSIX-style
2020 character classes.  These have the form C<[:name:]>, with C<name> the
2021 name of the POSIX class.  The POSIX classes are C<alpha>, C<alnum>,
2022 C<ascii>, C<cntrl>, C<digit>, C<graph>, C<lower>, C<print>, C<punct>,
2023 C<space>, C<upper>, and C<xdigit>, and two extensions, C<word> (a Perl
2024 extension to match C<\w>), and C<blank> (a GNU extension).  The C<//a>
2025 modifier restricts these to matching just in the ASCII range; otherwise
2026 they can match the same as their corresponding Perl Unicode classes:
2027 C<[:upper:]> is the same as C<\p{IsUpper}>, etc.  (There are some
2028 exceptions and gotchas with this; see L<perlrecharclass> for a full
2029 discussion.) The C<[:digit:]>, C<[:word:]>, and
2030 C<[:space:]> correspond to the familiar C<\d>, C<\w>, and C<\s>
2031 character classes.  To negate a POSIX class, put a C<^> in front of
2032 the name, so that, e.g., C<[:^digit:]> corresponds to C<\D> and, under
2033 Unicode, C<\P{IsDigit}>.  The Unicode and POSIX character classes can
2034 be used just like C<\d>, with the exception that POSIX character
2035 classes can only be used inside of a character class:
2036
2037     /\s+[abc[:digit:]xyz]\s*/;  # match a,b,c,x,y,z, or a digit
2038     /^=item\s[[:digit:]]/;      # match '=item',
2039                                 # followed by a space and a digit
2040     /\s+[abc\p{IsDigit}xyz]\s+/;  # match a,b,c,x,y,z, or a digit
2041     /^=item\s\p{IsDigit}/;        # match '=item',
2042                                   # followed by a space and a digit
2043
2044 Whew! That is all the rest of the characters and character classes.
2045
2046 =head2 Compiling and saving regular expressions
2047
2048 In Part 1 we mentioned that Perl compiles a regexp into a compact
2049 sequence of opcodes.  Thus, a compiled regexp is a data structure
2050 that can be stored once and used again and again.  The regexp quote
2051 C<qr//> does exactly that: C<qr/string/> compiles the C<string> as a
2052 regexp and transforms the result into a form that can be assigned to a
2053 variable:
2054
2055     $reg = qr/foo+bar?/;  # reg contains a compiled regexp
2056
2057 Then C<$reg> can be used as a regexp:
2058
2059     $x = "fooooba";
2060     $x =~ $reg;     # matches, just like /foo+bar?/
2061     $x =~ /$reg/;   # same thing, alternate form
2062
2063 C<$reg> can also be interpolated into a larger regexp:
2064
2065     $x =~ /(abc)?$reg/;  # still matches
2066
2067 As with the matching operator, the regexp quote can use different
2068 delimiters, e.g., C<qr!!>, C<qr{}> or C<qr~~>.  Apostrophes
2069 as delimiters (C<qr''>) inhibit any interpolation.
2070
2071 Pre-compiled regexps are useful for creating dynamic matches that
2072 don't need to be recompiled each time they are encountered.  Using
2073 pre-compiled regexps, we write a C<grep_step> program which greps
2074 for a sequence of patterns, advancing to the next pattern as soon
2075 as one has been satisfied.
2076
2077     % cat > grep_step
2078     #!/usr/bin/perl
2079     # grep_step - match <number> regexps, one after the other
2080     # usage: multi_grep <number> regexp1 regexp2 ... file1 file2 ...
2081
2082     $number = shift;
2083     $regexp[$_] = shift foreach (0..$number-1);
2084     @compiled = map qr/$_/, @regexp;
2085     while ($line = <>) {
2086         if ($line =~ /$compiled[0]/) {
2087             print $line;
2088             shift @compiled;
2089             last unless @compiled;
2090         }
2091     }
2092     ^D
2093
2094     % grep_step 3 shift print last grep_step
2095     $number = shift;
2096             print $line;
2097             last unless @compiled;
2098
2099 Storing pre-compiled regexps in an array C<@compiled> allows us to
2100 simply loop through the regexps without any recompilation, thus gaining
2101 flexibility without sacrificing speed.
2102
2103
2104 =head2 Composing regular expressions at runtime
2105
2106 Backtracking is more efficient than repeated tries with different regular
2107 expressions.  If there are several regular expressions and a match with
2108 any of them is acceptable, then it is possible to combine them into a set
2109 of alternatives.  If the individual expressions are input data, this
2110 can be done by programming a join operation.  We'll exploit this idea in
2111 an improved version of the C<simple_grep> program: a program that matches
2112 multiple patterns:
2113
2114     % cat > multi_grep
2115     #!/usr/bin/perl
2116     # multi_grep - match any of <number> regexps
2117     # usage: multi_grep <number> regexp1 regexp2 ... file1 file2 ...
2118
2119     $number = shift;
2120     $regexp[$_] = shift foreach (0..$number-1);
2121     $pattern = join '|', @regexp;
2122
2123     while ($line = <>) {
2124         print $line if $line =~ /$pattern/;
2125     }
2126     ^D
2127
2128     % multi_grep 2 shift for multi_grep
2129     $number = shift;
2130     $regexp[$_] = shift foreach (0..$number-1);
2131
2132 Sometimes it is advantageous to construct a pattern from the I<input>
2133 that is to be analyzed and use the permissible values on the left
2134 hand side of the matching operations.  As an example for this somewhat
2135 paradoxical situation, let's assume that our input contains a command
2136 verb which should match one out of a set of available command verbs,
2137 with the additional twist that commands may be abbreviated as long as
2138 the given string is unique. The program below demonstrates the basic
2139 algorithm.
2140
2141     % cat > keymatch
2142     #!/usr/bin/perl
2143     $kwds = 'copy compare list print';
2144     while( $cmd = <> ){
2145         $cmd =~ s/^\s+|\s+$//g;  # trim leading and trailing spaces
2146         if( ( @matches = $kwds =~ /\b$cmd\w*/g ) == 1 ){
2147             print "command: '@matches'\n";
2148         } elsif( @matches == 0 ){
2149             print "no such command: '$cmd'\n";
2150         } else {
2151             print "not unique: '$cmd' (could be one of: @matches)\n";
2152         }
2153     }
2154     ^D
2155
2156     % keymatch
2157     li
2158     command: 'list'
2159     co
2160     not unique: 'co' (could be one of: copy compare)
2161     printer
2162     no such command: 'printer'
2163
2164 Rather than trying to match the input against the keywords, we match the
2165 combined set of keywords against the input.  The pattern matching
2166 operation S<C<$kwds =~ /\b($cmd\w*)/g>> does several things at the
2167 same time. It makes sure that the given command begins where a keyword
2168 begins (C<\b>). It tolerates abbreviations due to the added C<\w*>. It
2169 tells us the number of matches (C<scalar @matches>) and all the keywords
2170 that were actually matched.  You could hardly ask for more.
2171
2172 =head2 Embedding comments and modifiers in a regular expression
2173
2174 Starting with this section, we will be discussing Perl's set of
2175 I<extended patterns>.  These are extensions to the traditional regular
2176 expression syntax that provide powerful new tools for pattern
2177 matching.  We have already seen extensions in the form of the minimal
2178 matching constructs C<??>, C<*?>, C<+?>, C<{n,m}?>, and C<{n,}?>.  Most
2179 of the extensions below have the form C<(?char...)>, where the
2180 C<char> is a character that determines the type of extension.
2181
2182 The first extension is an embedded comment C<(?#text)>.  This embeds a
2183 comment into the regular expression without affecting its meaning.  The
2184 comment should not have any closing parentheses in the text.  An
2185 example is
2186
2187     /(?# Match an integer:)[+-]?\d+/;
2188
2189 This style of commenting has been largely superseded by the raw,
2190 freeform commenting that is allowed with the C<//x> modifier.
2191
2192 Most modifiers, such as C<//i>, C<//m>, C<//s> and C<//x> (or any
2193 combination thereof) can also be embedded in
2194 a regexp using C<(?i)>, C<(?m)>, C<(?s)>, and C<(?x)>.  For instance,
2195
2196     /(?i)yes/;  # match 'yes' case insensitively
2197     /yes/i;     # same thing
2198     /(?x)(          # freeform version of an integer regexp
2199              [+-]?  # match an optional sign
2200              \d+    # match a sequence of digits
2201          )
2202     /x;
2203
2204 Embedded modifiers can have two important advantages over the usual
2205 modifiers.  Embedded modifiers allow a custom set of modifiers to
2206 I<each> regexp pattern.  This is great for matching an array of regexps
2207 that must have different modifiers:
2208
2209     $pattern[0] = '(?i)doctor';
2210     $pattern[1] = 'Johnson';
2211     ...
2212     while (<>) {
2213         foreach $patt (@pattern) {
2214             print if /$patt/;
2215         }
2216     }
2217
2218 The second advantage is that embedded modifiers (except C<//p>, which
2219 modifies the entire regexp) only affect the regexp
2220 inside the group the embedded modifier is contained in.  So grouping
2221 can be used to localize the modifier's effects:
2222
2223     /Answer: ((?i)yes)/;  # matches 'Answer: yes', 'Answer: YES', etc.
2224
2225 Embedded modifiers can also turn off any modifiers already present
2226 by using, e.g., C<(?-i)>.  Modifiers can also be combined into
2227 a single expression, e.g., C<(?s-i)> turns on single line mode and
2228 turns off case insensitivity.
2229
2230 Embedded modifiers may also be added to a non-capturing grouping.
2231 C<(?i-m:regexp)> is a non-capturing grouping that matches C<regexp>
2232 case insensitively and turns off multi-line mode.
2233
2234
2235 =head2 Looking ahead and looking behind
2236
2237 This section concerns the lookahead and lookbehind assertions.  First,
2238 a little background.
2239
2240 In Perl regular expressions, most regexp elements 'eat up' a certain
2241 amount of string when they match.  For instance, the regexp element
2242 C<[abc}]> eats up one character of the string when it matches, in the
2243 sense that Perl moves to the next character position in the string
2244 after the match.  There are some elements, however, that don't eat up
2245 characters (advance the character position) if they match.  The examples
2246 we have seen so far are the anchors.  The anchor C<^> matches the
2247 beginning of the line, but doesn't eat any characters.  Similarly, the
2248 word boundary anchor C<\b> matches wherever a character matching C<\w>
2249 is next to a character that doesn't, but it doesn't eat up any
2250 characters itself.  Anchors are examples of I<zero-width assertions>:
2251 zero-width, because they consume
2252 no characters, and assertions, because they test some property of the
2253 string.  In the context of our walk in the woods analogy to regexp
2254 matching, most regexp elements move us along a trail, but anchors have
2255 us stop a moment and check our surroundings.  If the local environment
2256 checks out, we can proceed forward.  But if the local environment
2257 doesn't satisfy us, we must backtrack.
2258
2259 Checking the environment entails either looking ahead on the trail,
2260 looking behind, or both.  C<^> looks behind, to see that there are no
2261 characters before.  C<$> looks ahead, to see that there are no
2262 characters after.  C<\b> looks both ahead and behind, to see if the
2263 characters on either side differ in their "word-ness".
2264
2265 The lookahead and lookbehind assertions are generalizations of the
2266 anchor concept.  Lookahead and lookbehind are zero-width assertions
2267 that let us specify which characters we want to test for.  The
2268 lookahead assertion is denoted by C<(?=regexp)> and the lookbehind
2269 assertion is denoted by C<< (?<=fixed-regexp) >>.  Some examples are
2270
2271     $x = "I catch the housecat 'Tom-cat' with catnip";
2272     $x =~ /cat(?=\s)/;   # matches 'cat' in 'housecat'
2273     @catwords = ($x =~ /(?<=\s)cat\w+/g);  # matches,
2274                                            # $catwords[0] = 'catch'
2275                                            # $catwords[1] = 'catnip'
2276     $x =~ /\bcat\b/;  # matches 'cat' in 'Tom-cat'
2277     $x =~ /(?<=\s)cat(?=\s)/; # doesn't match; no isolated 'cat' in
2278                               # middle of $x
2279
2280 Note that the parentheses in C<(?=regexp)> and C<< (?<=regexp) >> are
2281 non-capturing, since these are zero-width assertions.  Thus in the
2282 second regexp, the substrings captured are those of the whole regexp
2283 itself.  Lookahead C<(?=regexp)> can match arbitrary regexps, but
2284 lookbehind C<< (?<=fixed-regexp) >> only works for regexps of fixed
2285 width, i.e., a fixed number of characters long.  Thus
2286 C<< (?<=(ab|bc)) >> is fine, but C<< (?<=(ab)*) >> is not.  The
2287 negated versions of the lookahead and lookbehind assertions are
2288 denoted by C<(?!regexp)> and C<< (?<!fixed-regexp) >> respectively.
2289 They evaluate true if the regexps do I<not> match:
2290
2291     $x = "foobar";
2292     $x =~ /foo(?!bar)/;  # doesn't match, 'bar' follows 'foo'
2293     $x =~ /foo(?!baz)/;  # matches, 'baz' doesn't follow 'foo'
2294     $x =~ /(?<!\s)foo/;  # matches, there is no \s before 'foo'
2295
2296 The C<\C> is unsupported in lookbehind, because the already
2297 treacherous definition of C<\C> would become even more so
2298 when going backwards.
2299
2300 Here is an example where a string containing blank-separated words,
2301 numbers and single dashes is to be split into its components.
2302 Using C</\s+/> alone won't work, because spaces are not required between
2303 dashes, or a word or a dash. Additional places for a split are established
2304 by looking ahead and behind:
2305
2306     $str = "one two - --6-8";
2307     @toks = split / \s+              # a run of spaces
2308                   | (?<=\S) (?=-)    # any non-space followed by '-'
2309                   | (?<=-)  (?=\S)   # a '-' followed by any non-space
2310                   /x, $str;          # @toks = qw(one two - - - 6 - 8)
2311
2312
2313 =head2 Using independent subexpressions to prevent backtracking
2314
2315 I<Independent subexpressions> are regular expressions, in the
2316 context of a larger regular expression, that function independently of
2317 the larger regular expression.  That is, they consume as much or as
2318 little of the string as they wish without regard for the ability of
2319 the larger regexp to match.  Independent subexpressions are represented
2320 by C<< (?>regexp) >>.  We can illustrate their behavior by first
2321 considering an ordinary regexp:
2322
2323     $x = "ab";
2324     $x =~ /a*ab/;  # matches
2325
2326 This obviously matches, but in the process of matching, the
2327 subexpression C<a*> first grabbed the C<a>.  Doing so, however,
2328 wouldn't allow the whole regexp to match, so after backtracking, C<a*>
2329 eventually gave back the C<a> and matched the empty string.  Here, what
2330 C<a*> matched was I<dependent> on what the rest of the regexp matched.
2331
2332 Contrast that with an independent subexpression:
2333
2334     $x =~ /(?>a*)ab/;  # doesn't match!
2335
2336 The independent subexpression C<< (?>a*) >> doesn't care about the rest
2337 of the regexp, so it sees an C<a> and grabs it.  Then the rest of the
2338 regexp C<ab> cannot match.  Because C<< (?>a*) >> is independent, there
2339 is no backtracking and the independent subexpression does not give
2340 up its C<a>.  Thus the match of the regexp as a whole fails.  A similar
2341 behavior occurs with completely independent regexps:
2342
2343     $x = "ab";
2344     $x =~ /a*/g;   # matches, eats an 'a'
2345     $x =~ /\Gab/g; # doesn't match, no 'a' available
2346
2347 Here C<//g> and C<\G> create a 'tag team' handoff of the string from
2348 one regexp to the other.  Regexps with an independent subexpression are
2349 much like this, with a handoff of the string to the independent
2350 subexpression, and a handoff of the string back to the enclosing
2351 regexp.
2352
2353 The ability of an independent subexpression to prevent backtracking
2354 can be quite useful.  Suppose we want to match a non-empty string
2355 enclosed in parentheses up to two levels deep.  Then the following
2356 regexp matches:
2357
2358     $x = "abc(de(fg)h";  # unbalanced parentheses
2359     $x =~ /\( ( [^()]+ | \([^()]*\) )+ \)/x;
2360
2361 The regexp matches an open parenthesis, one or more copies of an
2362 alternation, and a close parenthesis.  The alternation is two-way, with
2363 the first alternative C<[^()]+> matching a substring with no
2364 parentheses and the second alternative C<\([^()]*\)>  matching a
2365 substring delimited by parentheses.  The problem with this regexp is
2366 that it is pathological: it has nested indeterminate quantifiers
2367 of the form C<(a+|b)+>.  We discussed in Part 1 how nested quantifiers
2368 like this could take an exponentially long time to execute if there
2369 was no match possible.  To prevent the exponential blowup, we need to
2370 prevent useless backtracking at some point.  This can be done by
2371 enclosing the inner quantifier as an independent subexpression:
2372
2373     $x =~ /\( ( (?>[^()]+) | \([^()]*\) )+ \)/x;
2374
2375 Here, C<< (?>[^()]+) >> breaks the degeneracy of string partitioning
2376 by gobbling up as much of the string as possible and keeping it.   Then
2377 match failures fail much more quickly.
2378
2379
2380 =head2 Conditional expressions
2381
2382 A I<conditional expression> is a form of if-then-else statement
2383 that allows one to choose which patterns are to be matched, based on
2384 some condition.  There are two types of conditional expression:
2385 C<(?(condition)yes-regexp)> and
2386 C<(?(condition)yes-regexp|no-regexp)>.  C<(?(condition)yes-regexp)> is
2387 like an S<C<'if () {}'>> statement in Perl.  If the C<condition> is true,
2388 the C<yes-regexp> will be matched.  If the C<condition> is false, the
2389 C<yes-regexp> will be skipped and Perl will move onto the next regexp
2390 element.  The second form is like an S<C<'if () {} else {}'>> statement
2391 in Perl.  If the C<condition> is true, the C<yes-regexp> will be
2392 matched, otherwise the C<no-regexp> will be matched.
2393
2394 The C<condition> can have several forms.  The first form is simply an
2395 integer in parentheses C<(integer)>.  It is true if the corresponding
2396 backreference C<\integer> matched earlier in the regexp.  The same
2397 thing can be done with a name associated with a capture group, written
2398 as C<< (<name>) >> or C<< ('name') >>.  The second form is a bare
2399 zero-width assertion C<(?...)>, either a lookahead, a lookbehind, or a
2400 code assertion (discussed in the next section).  The third set of forms
2401 provides tests that return true if the expression is executed within
2402 a recursion (C<(R)>) or is being called from some capturing group,
2403 referenced either by number (C<(R1)>, C<(R2)>,...) or by name
2404 (C<(R&name)>).
2405
2406 The integer or name form of the C<condition> allows us to choose,
2407 with more flexibility, what to match based on what matched earlier in the
2408 regexp. This searches for words of the form C<"$x$x"> or C<"$x$y$y$x">:
2409
2410     % simple_grep '^(\w+)(\w+)?(?(2)\g2\g1|\g1)$' /usr/dict/words
2411     beriberi
2412     coco
2413     couscous
2414     deed
2415     ...
2416     toot
2417     toto
2418     tutu
2419
2420 The lookbehind C<condition> allows, along with backreferences,
2421 an earlier part of the match to influence a later part of the
2422 match.  For instance,
2423
2424     /[ATGC]+(?(?<=AA)G|C)$/;
2425
2426 matches a DNA sequence such that it either ends in C<AAG>, or some
2427 other base pair combination and C<C>.  Note that the form is
2428 C<< (?(?<=AA)G|C) >> and not C<< (?((?<=AA))G|C) >>; for the
2429 lookahead, lookbehind or code assertions, the parentheses around the
2430 conditional are not needed.
2431
2432
2433 =head2 Defining named patterns
2434
2435 Some regular expressions use identical subpatterns in several places.
2436 Starting with Perl 5.10, it is possible to define named subpatterns in
2437 a section of the pattern so that they can be called up by name
2438 anywhere in the pattern.  This syntactic pattern for this definition
2439 group is C<< (?(DEFINE)(?<name>pattern)...) >>.  An insertion
2440 of a named pattern is written as C<(?&name)>.
2441
2442 The example below illustrates this feature using the pattern for
2443 floating point numbers that was presented earlier on.  The three
2444 subpatterns that are used more than once are the optional sign, the
2445 digit sequence for an integer and the decimal fraction.  The DEFINE
2446 group at the end of the pattern contains their definition.  Notice
2447 that the decimal fraction pattern is the first place where we can
2448 reuse the integer pattern.
2449
2450    /^ (?&osg)\ * ( (?&int)(?&dec)? | (?&dec) )
2451       (?: [eE](?&osg)(?&int) )?
2452     $
2453     (?(DEFINE)
2454       (?<osg>[-+]?)         # optional sign
2455       (?<int>\d++)          # integer
2456       (?<dec>\.(?&int))     # decimal fraction
2457     )/x
2458
2459
2460 =head2 Recursive patterns
2461
2462 This feature (introduced in Perl 5.10) significantly extends the
2463 power of Perl's pattern matching.  By referring to some other
2464 capture group anywhere in the pattern with the construct
2465 C<(?group-ref)>, the I<pattern> within the referenced group is used
2466 as an independent subpattern in place of the group reference itself.
2467 Because the group reference may be contained I<within> the group it
2468 refers to, it is now possible to apply pattern matching to tasks that
2469 hitherto required a recursive parser.
2470
2471 To illustrate this feature, we'll design a pattern that matches if
2472 a string contains a palindrome. (This is a word or a sentence that,
2473 while ignoring spaces, interpunctuation and case, reads the same backwards
2474 as forwards. We begin by observing that the empty string or a string
2475 containing just one word character is a palindrome. Otherwise it must
2476 have a word character up front and the same at its end, with another
2477 palindrome in between.
2478
2479     /(?: (\w) (?...Here be a palindrome...) \g{-1} | \w? )/x
2480
2481 Adding C<\W*> at either end to eliminate what is to be ignored, we already
2482 have the full pattern:
2483
2484     my $pp = qr/^(\W* (?: (\w) (?1) \g{-1} | \w? ) \W*)$/ix;
2485     for $s ( "saippuakauppias", "A man, a plan, a canal: Panama!" ){
2486         print "'$s' is a palindrome\n" if $s =~ /$pp/;
2487     }
2488
2489 In C<(?...)> both absolute and relative backreferences may be used.
2490 The entire pattern can be reinserted with C<(?R)> or C<(?0)>.
2491 If you prefer to name your groups, you can use C<(?&name)> to
2492 recurse into that group.
2493
2494
2495 =head2 A bit of magic: executing Perl code in a regular expression
2496
2497 Normally, regexps are a part of Perl expressions.
2498 I<Code evaluation> expressions turn that around by allowing
2499 arbitrary Perl code to be a part of a regexp.  A code evaluation
2500 expression is denoted C<(?{code})>, with I<code> a string of Perl
2501 statements.
2502
2503 Be warned that this feature is considered experimental, and may be
2504 changed without notice.
2505
2506 Code expressions are zero-width assertions, and the value they return
2507 depends on their environment.  There are two possibilities: either the
2508 code expression is used as a conditional in a conditional expression
2509 C<(?(condition)...)>, or it is not.  If the code expression is a
2510 conditional, the code is evaluated and the result (i.e., the result of
2511 the last statement) is used to determine truth or falsehood.  If the
2512 code expression is not used as a conditional, the assertion always
2513 evaluates true and the result is put into the special variable
2514 C<$^R>.  The variable C<$^R> can then be used in code expressions later
2515 in the regexp.  Here are some silly examples:
2516
2517     $x = "abcdef";
2518     $x =~ /abc(?{print "Hi Mom!";})def/; # matches,
2519                                          # prints 'Hi Mom!'
2520     $x =~ /aaa(?{print "Hi Mom!";})def/; # doesn't match,
2521                                          # no 'Hi Mom!'
2522
2523 Pay careful attention to the next example:
2524
2525     $x =~ /abc(?{print "Hi Mom!";})ddd/; # doesn't match,
2526                                          # no 'Hi Mom!'
2527                                          # but why not?
2528
2529 At first glance, you'd think that it shouldn't print, because obviously
2530 the C<ddd> isn't going to match the target string. But look at this
2531 example:
2532
2533     $x =~ /abc(?{print "Hi Mom!";})[dD]dd/; # doesn't match,
2534                                             # but _does_ print
2535
2536 Hmm. What happened here? If you've been following along, you know that
2537 the above pattern should be effectively (almost) the same as the last one;
2538 enclosing the C<d> in a character class isn't going to change what it
2539 matches. So why does the first not print while the second one does?
2540
2541 The answer lies in the optimizations the regex engine makes. In the first
2542 case, all the engine sees are plain old characters (aside from the
2543 C<?{}> construct). It's smart enough to realize that the string 'ddd'
2544 doesn't occur in our target string before actually running the pattern
2545 through. But in the second case, we've tricked it into thinking that our
2546 pattern is more complicated. It takes a look, sees our
2547 character class, and decides that it will have to actually run the
2548 pattern to determine whether or not it matches, and in the process of
2549 running it hits the print statement before it discovers that we don't
2550 have a match.
2551
2552 To take a closer look at how the engine does optimizations, see the
2553 section L<"Pragmas and debugging"> below.
2554
2555 More fun with C<?{}>:
2556
2557     $x =~ /(?{print "Hi Mom!";})/;       # matches,
2558                                          # prints 'Hi Mom!'
2559     $x =~ /(?{$c = 1;})(?{print "$c";})/;  # matches,
2560                                            # prints '1'
2561     $x =~ /(?{$c = 1;})(?{print "$^R";})/; # matches,
2562                                            # prints '1'
2563
2564 The bit of magic mentioned in the section title occurs when the regexp
2565 backtracks in the process of searching for a match.  If the regexp
2566 backtracks over a code expression and if the variables used within are
2567 localized using C<local>, the changes in the variables produced by the
2568 code expression are undone! Thus, if we wanted to count how many times
2569 a character got matched inside a group, we could use, e.g.,
2570
2571     $x = "aaaa";
2572     $count = 0;  # initialize 'a' count
2573     $c = "bob";  # test if $c gets clobbered
2574     $x =~ /(?{local $c = 0;})         # initialize count
2575            ( a                        # match 'a'
2576              (?{local $c = $c + 1;})  # increment count
2577            )*                         # do this any number of times,
2578            aa                         # but match 'aa' at the end
2579            (?{$count = $c;})          # copy local $c var into $count
2580           /x;
2581     print "'a' count is $count, \$c variable is '$c'\n";
2582
2583 This prints
2584
2585     'a' count is 2, $c variable is 'bob'
2586
2587 If we replace the S<C< (?{local $c = $c + 1;})>> with
2588 S<C< (?{$c = $c + 1;})>>, the variable changes are I<not> undone
2589 during backtracking, and we get
2590
2591     'a' count is 4, $c variable is 'bob'
2592
2593 Note that only localized variable changes are undone.  Other side
2594 effects of code expression execution are permanent.  Thus
2595
2596     $x = "aaaa";
2597     $x =~ /(a(?{print "Yow\n";}))*aa/;
2598
2599 produces
2600
2601    Yow
2602    Yow
2603    Yow
2604    Yow
2605
2606 The result C<$^R> is automatically localized, so that it will behave
2607 properly in the presence of backtracking.
2608
2609 This example uses a code expression in a conditional to match a
2610 definite article, either 'the' in English or 'der|die|das' in German:
2611
2612     $lang = 'DE';  # use German
2613     ...
2614     $text = "das";
2615     print "matched\n"
2616         if $text =~ /(?(?{
2617                           $lang eq 'EN'; # is the language English?
2618                          })
2619                        the |             # if so, then match 'the'
2620                        (der|die|das)     # else, match 'der|die|das'
2621                      )
2622                     /xi;
2623
2624 Note that the syntax here is C<(?(?{...})yes-regexp|no-regexp)>, not
2625 C<(?((?{...}))yes-regexp|no-regexp)>.  In other words, in the case of a
2626 code expression, we don't need the extra parentheses around the
2627 conditional.
2628
2629 If you try to use code expressions where the code text is contained within
2630 an interpolated variable, rather than appearing literally in the pattern,
2631 Perl may surprise you:
2632
2633     $bar = 5;
2634     $pat = '(?{ 1 })';
2635     /foo(?{ $bar })bar/; # compiles ok, $bar not interpolated
2636     /foo(?{ 1 })$bar/;   # compiles ok, $bar interpolated
2637     /foo${pat}bar/;      # compile error!
2638
2639     $pat = qr/(?{ $foo = 1 })/;  # precompile code regexp
2640     /foo${pat}bar/;      # compiles ok
2641
2642 If a regexp has a variable that interpolates a code expression, Perl
2643 treats the regexp as an error. If the code expression is precompiled into
2644 a variable, however, interpolating is ok. The question is, why is this an
2645 error?
2646
2647 The reason is that variable interpolation and code expressions
2648 together pose a security risk.  The combination is dangerous because
2649 many programmers who write search engines often take user input and
2650 plug it directly into a regexp:
2651
2652     $regexp = <>;       # read user-supplied regexp
2653     $chomp $regexp;     # get rid of possible newline
2654     $text =~ /$regexp/; # search $text for the $regexp
2655
2656 If the C<$regexp> variable contains a code expression, the user could
2657 then execute arbitrary Perl code.  For instance, some joker could
2658 search for S<C<system('rm -rf *');>> to erase your files.  In this
2659 sense, the combination of interpolation and code expressions I<taints>
2660 your regexp.  So by default, using both interpolation and code
2661 expressions in the same regexp is not allowed.  If you're not
2662 concerned about malicious users, it is possible to bypass this
2663 security check by invoking S<C<use re 'eval'>>:
2664
2665     use re 'eval';       # throw caution out the door
2666     $bar = 5;
2667     $pat = '(?{ 1 })';
2668     /foo${pat}bar/;      # compiles ok
2669
2670 Another form of code expression is the I<pattern code expression>.
2671 The pattern code expression is like a regular code expression, except
2672 that the result of the code evaluation is treated as a regular
2673 expression and matched immediately.  A simple example is
2674
2675     $length = 5;
2676     $char = 'a';
2677     $x = 'aaaaabb';
2678     $x =~ /(??{$char x $length})/x; # matches, there are 5 of 'a'
2679
2680
2681 This final example contains both ordinary and pattern code
2682 expressions.  It detects whether a binary string C<1101010010001...> has a
2683 Fibonacci spacing 0,1,1,2,3,5,...  of the C<1>'s:
2684
2685     $x = "1101010010001000001";
2686     $z0 = ''; $z1 = '0';   # initial conditions
2687     print "It is a Fibonacci sequence\n"
2688         if $x =~ /^1         # match an initial '1'
2689                     (?:
2690                        ((??{ $z0 })) # match some '0'
2691                        1             # and then a '1'
2692                        (?{ $z0 = $z1; $z1 .= $^N; })
2693                     )+   # repeat as needed
2694                   $      # that is all there is
2695                  /x;
2696     printf "Largest sequence matched was %d\n", length($z1)-length($z0);
2697
2698 Remember that C<$^N> is set to whatever was matched by the last
2699 completed capture group. This prints
2700
2701     It is a Fibonacci sequence
2702     Largest sequence matched was 5
2703
2704 Ha! Try that with your garden variety regexp package...
2705
2706 Note that the variables C<$z0> and C<$z1> are not substituted when the
2707 regexp is compiled, as happens for ordinary variables outside a code
2708 expression.  Rather, the whole code block is parsed as perl code at the
2709 same time as perl is compiling the code containing the literal regexp
2710 pattern.
2711
2712 The regexp without the C<//x> modifier is
2713
2714     /^1(?:((??{ $z0 }))1(?{ $z0 = $z1; $z1 .= $^N; }))+$/
2715
2716 which shows that spaces are still possible in the code parts. Nevertheless,
2717 when working with code and conditional expressions, the extended form of
2718 regexps is almost necessary in creating and debugging regexps.
2719
2720
2721 =head2 Backtracking control verbs
2722
2723 Perl 5.10 introduced a number of control verbs intended to provide
2724 detailed control over the backtracking process, by directly influencing
2725 the regexp engine and by providing monitoring techniques.  As all
2726 the features in this group are experimental and subject to change or
2727 removal in a future version of Perl, the interested reader is
2728 referred to L<perlre/"Special Backtracking Control Verbs"> for a
2729 detailed description.
2730
2731 Below is just one example, illustrating the control verb C<(*FAIL)>,
2732 which may be abbreviated as C<(*F)>. If this is inserted in a regexp
2733 it will cause it to fail, just as it would at some
2734 mismatch between the pattern and the string. Processing
2735 of the regexp continues as it would after any "normal"
2736 failure, so that, for instance, the next position in the string or another
2737 alternative will be tried. As failing to match doesn't preserve capture
2738 groups or produce results, it may be necessary to use this in
2739 combination with embedded code.
2740
2741    %count = ();
2742    "supercalifragilisticexpialidocious" =~
2743        /([aeiou])(?{ $count{$1}++; })(*FAIL)/i;
2744    printf "%3d '%s'\n", $count{$_}, $_ for (sort keys %count);
2745
2746 The pattern begins with a class matching a subset of letters.  Whenever
2747 this matches, a statement like C<$count{'a'}++;> is executed, incrementing
2748 the letter's counter. Then C<(*FAIL)> does what it says, and
2749 the regexp engine proceeds according to the book: as long as the end of
2750 the string hasn't been reached, the position is advanced before looking
2751 for another vowel. Thus, match or no match makes no difference, and the
2752 regexp engine proceeds until the entire string has been inspected.
2753 (It's remarkable that an alternative solution using something like
2754
2755    $count{lc($_)}++ for split('', "supercalifragilisticexpialidocious");
2756    printf "%3d '%s'\n", $count2{$_}, $_ for ( qw{ a e i o u } );
2757
2758 is considerably slower.)
2759
2760
2761 =head2 Pragmas and debugging
2762
2763 Speaking of debugging, there are several pragmas available to control
2764 and debug regexps in Perl.  We have already encountered one pragma in
2765 the previous section, S<C<use re 'eval';>>, that allows variable
2766 interpolation and code expressions to coexist in a regexp.  The other
2767 pragmas are
2768
2769     use re 'taint';
2770     $tainted = <>;
2771     @parts = ($tainted =~ /(\w+)\s+(\w+)/; # @parts is now tainted
2772
2773 The C<taint> pragma causes any substrings from a match with a tainted
2774 variable to be tainted as well.  This is not normally the case, as
2775 regexps are often used to extract the safe bits from a tainted
2776 variable.  Use C<taint> when you are not extracting safe bits, but are
2777 performing some other processing.  Both C<taint> and C<eval> pragmas
2778 are lexically scoped, which means they are in effect only until
2779 the end of the block enclosing the pragmas.
2780
2781     use re '/m';  # or any other flags
2782     $multiline_string =~ /^foo/; # /m is implied
2783
2784 The C<re '/flags'> pragma (introduced in Perl
2785 5.14) turns on the given regular expression flags
2786 until the end of the lexical scope.  See
2787 L<re/"'E<sol>flags' mode"> for more
2788 detail.
2789
2790     use re 'debug';
2791     /^(.*)$/s;       # output debugging info
2792
2793     use re 'debugcolor';
2794     /^(.*)$/s;       # output debugging info in living color
2795
2796 The global C<debug> and C<debugcolor> pragmas allow one to get
2797 detailed debugging info about regexp compilation and
2798 execution.  C<debugcolor> is the same as debug, except the debugging
2799 information is displayed in color on terminals that can display
2800 termcap color sequences.  Here is example output:
2801
2802     % perl -e 'use re "debug"; "abc" =~ /a*b+c/;'
2803     Compiling REx 'a*b+c'
2804     size 9 first at 1
2805        1: STAR(4)
2806        2:   EXACT <a>(0)
2807        4: PLUS(7)
2808        5:   EXACT <b>(0)
2809        7: EXACT <c>(9)
2810        9: END(0)
2811     floating 'bc' at 0..2147483647 (checking floating) minlen 2
2812     Guessing start of match, REx 'a*b+c' against 'abc'...
2813     Found floating substr 'bc' at offset 1...
2814     Guessed: match at offset 0
2815     Matching REx 'a*b+c' against 'abc'
2816       Setting an EVAL scope, savestack=3
2817        0 <> <abc>           |  1:  STAR
2818                              EXACT <a> can match 1 times out of 32767...
2819       Setting an EVAL scope, savestack=3
2820        1 <a> <bc>           |  4:    PLUS
2821                              EXACT <b> can match 1 times out of 32767...
2822       Setting an EVAL scope, savestack=3
2823        2 <ab> <c>           |  7:      EXACT <c>
2824        3 <abc> <>           |  9:      END
2825     Match successful!
2826     Freeing REx: 'a*b+c'
2827
2828 If you have gotten this far into the tutorial, you can probably guess
2829 what the different parts of the debugging output tell you.  The first
2830 part
2831
2832     Compiling REx 'a*b+c'
2833     size 9 first at 1
2834        1: STAR(4)
2835        2:   EXACT <a>(0)
2836        4: PLUS(7)
2837        5:   EXACT <b>(0)
2838        7: EXACT <c>(9)
2839        9: END(0)
2840
2841 describes the compilation stage.  C<STAR(4)> means that there is a
2842 starred object, in this case C<'a'>, and if it matches, goto line 4,
2843 i.e., C<PLUS(7)>.  The middle lines describe some heuristics and
2844 optimizations performed before a match:
2845
2846     floating 'bc' at 0..2147483647 (checking floating) minlen 2
2847     Guessing start of match, REx 'a*b+c' against 'abc'...
2848     Found floating substr 'bc' at offset 1...
2849     Guessed: match at offset 0
2850
2851 Then the match is executed and the remaining lines describe the
2852 process:
2853
2854     Matching REx 'a*b+c' against 'abc'
2855       Setting an EVAL scope, savestack=3
2856        0 <> <abc>           |  1:  STAR
2857                              EXACT <a> can match 1 times out of 32767...
2858       Setting an EVAL scope, savestack=3
2859        1 <a> <bc>           |  4:    PLUS
2860                              EXACT <b> can match 1 times out of 32767...
2861       Setting an EVAL scope, savestack=3
2862        2 <ab> <c>           |  7:      EXACT <c>
2863        3 <abc> <>           |  9:      END
2864     Match successful!
2865     Freeing REx: 'a*b+c'
2866
2867 Each step is of the form S<C<< n <x> <y> >>>, with C<< <x> >> the
2868 part of the string matched and C<< <y> >> the part not yet
2869 matched.  The S<C<< |  1:  STAR >>> says that Perl is at line number 1
2870 in the compilation list above.  See
2871 L<perldebguts/"Debugging Regular Expressions"> for much more detail.
2872
2873 An alternative method of debugging regexps is to embed C<print>
2874 statements within the regexp.  This provides a blow-by-blow account of
2875 the backtracking in an alternation:
2876
2877     "that this" =~ m@(?{print "Start at position ", pos, "\n";})
2878                      t(?{print "t1\n";})
2879                      h(?{print "h1\n";})
2880                      i(?{print "i1\n";})
2881                      s(?{print "s1\n";})
2882                          |
2883                      t(?{print "t2\n";})
2884                      h(?{print "h2\n";})
2885                      a(?{print "a2\n";})
2886                      t(?{print "t2\n";})
2887                      (?{print "Done at position ", pos, "\n";})
2888                     @x;
2889
2890 prints
2891
2892     Start at position 0
2893     t1
2894     h1
2895     t2
2896     h2
2897     a2
2898     t2
2899     Done at position 4
2900
2901 =head1 BUGS
2902
2903 Code expressions, conditional expressions, and independent expressions
2904 are I<experimental>.  Don't use them in production code.  Yet.
2905
2906 =head1 SEE ALSO
2907
2908 This is just a tutorial.  For the full story on Perl regular
2909 expressions, see the L<perlre> regular expressions reference page.
2910
2911 For more information on the matching C<m//> and substitution C<s///>
2912 operators, see L<perlop/"Regexp Quote-Like Operators">.  For
2913 information on the C<split> operation, see L<perlfunc/split>.
2914
2915 For an excellent all-around resource on the care and feeding of
2916 regular expressions, see the book I<Mastering Regular Expressions> by
2917 Jeffrey Friedl (published by O'Reilly, ISBN 1556592-257-3).
2918
2919 =head1 AUTHOR AND COPYRIGHT
2920
2921 Copyright (c) 2000 Mark Kvale
2922 All rights reserved.
2923
2924 This document may be distributed under the same terms as Perl itself.
2925
2926 =head2 Acknowledgments
2927
2928 The inspiration for the stop codon DNA example came from the ZIP
2929 code example in chapter 7 of I<Mastering Regular Expressions>.
2930
2931 The author would like to thank Jeff Pinyan, Andrew Johnson, Peter
2932 Haworth, Ronald J Kimball, and Joe Smith for all their helpful
2933 comments.
2934
2935 =cut
2936