8fb582074ce9a91c7adabac78f53b988e02a7140
[p5sagit/p5-mst-13.2.git] / pod / perlre.pod
1 =head1 NAME
2
3 perlre - Perl regular expressions
4
5 =head1 DESCRIPTION
6
7 This page describes the syntax of regular expressions in Perl.  For a
8 description of how to I<use> regular expressions in matching
9 operations, plus various examples of the same, see C<m//> and C<s///> in
10 L<perlop>.
11
12 The matching operations can have various modifiers.  The modifiers
13 which relate to the interpretation of the regular expression inside
14 are listed below.  For the modifiers that alter the behaviour of the
15 operation, see L<perlop/"m//"> and L<perlop/"s//">.
16
17 =over 4
18
19 =item i
20
21 Do case-insensitive pattern matching.
22
23 If C<use locale> is in effect, the case map is taken from the current
24 locale.  See L<perllocale>.
25
26 =item m
27
28 Treat string as multiple lines.  That is, change "^" and "$" from matching
29 at only the very start or end of the string to the start or end of any
30 line anywhere within the string,
31
32 =item s
33
34 Treat string as single line.  That is, change "." to match any character
35 whatsoever, even a newline, which it normally would not match.
36
37 The /s and /m modifiers both override the C<$*> setting.  That is, no matter
38 what C<$*> contains, /s (without /m) will force "^" to match only at the
39 beginning of the string and "$" to match only at the end (or just before a
40 newline at the end) of the string.  Together, as /ms, they let the "." match
41 any character whatsoever, while yet allowing "^" and "$" to match,
42 respectively, just after and just before newlines within the string.
43
44 =item x
45
46 Extend your pattern's legibility by permitting whitespace and comments.
47
48 =back
49
50 These are usually written as "the C</x> modifier", even though the delimiter
51 in question might not actually be a slash.  In fact, any of these
52 modifiers may also be embedded within the regular expression itself using
53 the new C<(?...)> construct.  See below.
54
55 The C</x> modifier itself needs a little more explanation.  It tells
56 the regular expression parser to ignore whitespace that is neither
57 backslashed nor within a character class.  You can use this to break up
58 your regular expression into (slightly) more readable parts.  The C<#>
59 character is also treated as a metacharacter introducing a comment,
60 just as in ordinary Perl code.  This also means that if you want real
61 whitespace or C<#> characters in the pattern that you'll have to either
62 escape them or encode them using octal or hex escapes.  Taken together,
63 these features go a long way towards making Perl's regular expressions
64 more readable.  See the C comment deletion code in L<perlop>.
65
66 =head2 Regular Expressions
67
68 The patterns used in pattern matching are regular expressions such as
69 those supplied in the Version 8 regexp routines.  (In fact, the
70 routines are derived (distantly) from Henry Spencer's freely
71 redistributable reimplementation of the V8 routines.)
72 See L<Version 8 Regular Expressions> for details.
73
74 In particular the following metacharacters have their standard I<egrep>-ish
75 meanings:
76
77     \   Quote the next metacharacter
78     ^   Match the beginning of the line
79     .   Match any character (except newline)
80     $   Match the end of the line (or before newline at the end)
81     |   Alternation
82     ()  Grouping
83     []  Character class
84
85 By default, the "^" character is guaranteed to match at only the
86 beginning of the string, the "$" character at only the end (or before the
87 newline at the end) and Perl does certain optimizations with the
88 assumption that the string contains only one line.  Embedded newlines
89 will not be matched by "^" or "$".  You may, however, wish to treat a
90 string as a multi-line buffer, such that the "^" will match after any
91 newline within the string, and "$" will match before any newline.  At the
92 cost of a little more overhead, you can do this by using the /m modifier
93 on the pattern match operator.  (Older programs did this by setting C<$*>,
94 but this practice is now deprecated.)
95
96 To facilitate multi-line substitutions, the "." character never matches a
97 newline unless you use the C</s> modifier, which in effect tells Perl to pretend
98 the string is a single line--even if it isn't.  The C</s> modifier also
99 overrides the setting of C<$*>, in case you have some (badly behaved) older
100 code that sets it in another module.
101
102 The following standard quantifiers are recognized:
103
104     *      Match 0 or more times
105     +      Match 1 or more times
106     ?      Match 1 or 0 times
107     {n}    Match exactly n times
108     {n,}   Match at least n times
109     {n,m}  Match at least n but not more than m times
110
111 (If a curly bracket occurs in any other context, it is treated
112 as a regular character.)  The "*" modifier is equivalent to C<{0,}>, the "+"
113 modifier to C<{1,}>, and the "?" modifier to C<{0,1}>.  n and m are limited
114 to integral values less than 65536.
115
116 By default, a quantified subpattern is "greedy", that is, it will match as
117 many times as possible (given a particular starting location) while still
118 allowing the rest of the pattern to match.  If you want it to match the
119 minimum number of times possible, follow the quantifier with a "?".  Note
120 that the meanings don't change, just the "greediness":
121
122     *?     Match 0 or more times
123     +?     Match 1 or more times
124     ??     Match 0 or 1 time
125     {n}?   Match exactly n times
126     {n,}?  Match at least n times
127     {n,m}? Match at least n but not more than m times
128
129 Because patterns are processed as double quoted strings, the following
130 also work:
131
132     \t          tab                   (HT, TAB)
133     \n          newline               (LF, NL)
134     \r          return                (CR)
135     \f          form feed             (FF)
136     \a          alarm (bell)          (BEL)
137     \e          escape (think troff)  (ESC)
138     \033        octal char (think of a PDP-11)
139     \x1B        hex char
140     \c[         control char
141     \l          lowercase next char (think vi)
142     \u          uppercase next char (think vi)
143     \L          lowercase till \E (think vi)
144     \U          uppercase till \E (think vi)
145     \E          end case modification (think vi)
146     \Q          quote (disable) regexp metacharacters till \E
147
148 If C<use locale> is in effect, the case map used by C<\l>, C<\L>, C<\u>
149 and C<\U> is taken from the current locale.  See L<perllocale>.
150
151 You cannot include a literal C<$> or C<@> within a C<\Q> sequence.
152 An unescaped C<$> or C<@> interpolates the corresponding variable,
153 while escaping will cause the literal string C<\$> to be matched.
154 You'll need to write something like C<m/\Quser\E\@\Qhost/>.
155
156 In addition, Perl defines the following:
157
158     \w  Match a "word" character (alphanumeric plus "_")
159     \W  Match a non-word character
160     \s  Match a whitespace character
161     \S  Match a non-whitespace character
162     \d  Match a digit character
163     \D  Match a non-digit character
164
165 Note that C<\w> matches a single alphanumeric character, not a whole
166 word.  To match a word you'd need to say C<\w+>.  If C<use locale> is in
167 effect, the list of alphabetic characters generated by C<\w> is taken
168 from the current locale.  See L<perllocale>. You may use C<\w>, C<\W>,
169 C<\s>, C<\S>, C<\d>, and C<\D> within character classes (though not as
170 either end of a range).
171
172 Perl defines the following zero-width assertions:
173
174     \b  Match a word boundary
175     \B  Match a non-(word boundary)
176     \A  Match at only beginning of string
177     \Z  Match at only end of string (or before newline at the end)
178     \G  Match only where previous m//g left off (works only with /g)
179
180 A word boundary (C<\b>) is defined as a spot between two characters that
181 has a C<\w> on one side of it and a C<\W> on the other side of it (in
182 either order), counting the imaginary characters off the beginning and
183 end of the string as matching a C<\W>.  (Within character classes C<\b>
184 represents backspace rather than a word boundary.)  The C<\A> and C<\Z> are
185 just like "^" and "$" except that they won't match multiple times when the
186 C</m> modifier is used, while "^" and "$" will match at every internal line
187 boundary.  To match the actual end of the string, not ignoring newline,
188 you can use C<\Z(?!\n)>.  The C<\G> assertion can be used to chain global
189 matches (using C<m//g>), as described in
190 L<perlop/"Regexp Quote-Like Operators">.
191
192 It is also useful when writing C<lex>-like scanners, when you have several
193 regexps which you want to match against consequent substrings of your
194 string, see the previous reference.
195 The actual location where C<\G> will match can also be influenced
196 by using C<pos()> as an lvalue.  See L<perlfunc/pos>.
197
198 When the bracketing construct C<( ... )> is used, \E<lt>digitE<gt> matches the
199 digit'th substring.  Outside of the pattern, always use "$" instead of "\"
200 in front of the digit.  (While the \E<lt>digitE<gt> notation can on rare occasion work
201 outside the current pattern, this should not be relied upon.  See the
202 WARNING below.) The scope of $E<lt>digitE<gt> (and C<$`>, C<$&>, and C<$'>)
203 extends to the end of the enclosing BLOCK or eval string, or to the next
204 successful pattern match, whichever comes first.  If you want to use
205 parentheses to delimit a subpattern (e.g., a set of alternatives) without
206 saving it as a subpattern, follow the ( with a ?:.
207
208 You may have as many parentheses as you wish.  If you have more
209 than 9 substrings, the variables $10, $11, ... refer to the
210 corresponding substring.  Within the pattern, \10, \11, etc. refer back
211 to substrings if there have been at least that many left parentheses before
212 the backreference.  Otherwise (for backward compatibility) \10 is the
213 same as \010, a backspace, and \11 the same as \011, a tab.  And so
214 on.  (\1 through \9 are always backreferences.)
215
216 C<$+> returns whatever the last bracket match matched.  C<$&> returns the
217 entire matched string.  (C<$0> used to return the same thing, but not any
218 more.)  C<$`> returns everything before the matched string.  C<$'> returns
219 everything after the matched string.  Examples:
220
221     s/^([^ ]*) *([^ ]*)/$2 $1/;     # swap first two words
222
223     if (/Time: (..):(..):(..)/) {
224         $hours = $1;
225         $minutes = $2;
226         $seconds = $3;
227     }
228
229 Once perl sees that you need one of C<$&>, C<$`> or C<$'> anywhere in
230 the program, it has to provide them on each and every pattern match.
231 This can slow your program down.  The same mechanism that handles
232 these provides for the use of $1, $2, etc., so you pay the same price
233 for each regexp that contains capturing parentheses. But if you never
234 use $&, etc., in your script, then regexps I<without> capturing
235 parentheses won't be penalized. So avoid $&, $', and $` if you can,
236 but if you can't (and some algorithms really appreciate them), once
237 you've used them once, use them at will, because you've already paid
238 the price.
239
240 You will note that all backslashed metacharacters in Perl are
241 alphanumeric, such as C<\b>, C<\w>, C<\n>.  Unlike some other regular
242 expression languages, there are no backslashed symbols that aren't
243 alphanumeric.  So anything that looks like \\, \(, \), \E<lt>, \E<gt>,
244 \{, or \} is always interpreted as a literal character, not a
245 metacharacter.  This was once used in a common idiom to disable or
246 quote the special meanings of regular expression metacharacters in a
247 string that you want to use for a pattern. Simply quote all the
248 non-alphanumeric characters:
249
250     $pattern =~ s/(\W)/\\$1/g;
251
252 Now it is much more common to see either the quotemeta() function or
253 the C<\Q> escape sequence used to disable all metacharacters' special
254 meanings like this:
255
256     /$unquoted\Q$quoted\E$unquoted/
257
258 Perl defines a consistent extension syntax for regular expressions.
259 The syntax is a pair of parentheses with a question mark as the first
260 thing within the parentheses (this was a syntax error in older
261 versions of Perl).  The character after the question mark gives the
262 function of the extension.  Several extensions are already supported:
263
264 =over 10
265
266 =item C<(?#text)>
267
268 A comment.  The text is ignored.  If the C</x> switch is used to enable
269 whitespace formatting, a simple C<#> will suffice.
270
271 =item C<(?:regexp)>
272
273 This groups things like "()" but doesn't make backreferences like "()" does.  So
274
275     split(/\b(?:a|b|c)\b/)
276
277 is like
278
279     split(/\b(a|b|c)\b/)
280
281 but doesn't spit out extra fields.
282
283 =item C<(?=regexp)>
284
285 A zero-width positive lookahead assertion.  For example, C</\w+(?=\t)/>
286 matches a word followed by a tab, without including the tab in C<$&>.
287
288 =item C<(?!regexp)>
289
290 A zero-width negative lookahead assertion.  For example C</foo(?!bar)/>
291 matches any occurrence of "foo" that isn't followed by "bar".  Note
292 however that lookahead and lookbehind are NOT the same thing.  You cannot
293 use this for lookbehind.
294
295 If you are looking for a "bar" which isn't preceded by a "foo", C</(?!foo)bar/>
296 will not do what you want.  That's because the C<(?!foo)> is just saying that
297 the next thing cannot be "foo"--and it's not, it's a "bar", so "foobar" will
298 match.  You would have to do something like C</(?!foo)...bar/> for that.   We
299 say "like" because there's the case of your "bar" not having three characters
300 before it.  You could cover that this way: C</(?:(?!foo)...|^.{0,2})bar/>.
301 Sometimes it's still easier just to say:
302
303     if (/bar/ && $` !~ /foo$/)
304
305 For lookbehind see below.
306
307 =item C<(?<=regexp)>
308
309 A zero-width positive lookbehind assertion.  For example, C</(?=\t)\w+/>
310 matches a word following a tab, without including the tab in C<$&>.
311 Works only for fixed-width lookbehind.
312
313 =item C<(?<!regexp)>
314
315 A zero-width negative lookbehind assertion.  For example C</(?<!bar)foo/>
316 matches any occurrence of "foo" that isn't following "bar".  
317 Works only for fixed-width lookbehind.
318
319 =item C<(?{ code })>
320
321 Experimental "evaluate any Perl code" zero-width assertion.  Always
322 succeeds.  C<code> is not interpolated.  Currently the rules to
323 determine where the C<code> ends are somewhat convoluted.
324
325 =item C<(?E<gt>regexp)>
326
327 An "independend" subexpression.  Matches the substring which a
328 I<standalone> C<regexp> would match if anchored at the given position,
329 B<and only this substring>.
330
331 Say, C<^(?E<gt>a*)ab> will never match, since C<(?E<gt>a*)> (anchored
332 at the beginning of string, as above) will match I<all> the characters
333 C<a> at the beginning of string, leaving no C<a> for C<ab> to match.
334 In contrast, C<a*ab> will match the same as C<a+b>, since the match of
335 the subgroup C<a*> is influenced by the following group C<ab> (see
336 L<"Backtracking">).  In particular, C<a*> inside C<a*ab> will match
337 less characters that a standalone C<a*>, since this makes the tail match.
338
339 Note that a similar effect to C<(?E<gt>regexp)> may be achieved by
340
341    (?=(regexp))\1
342
343 since the lookahead is in I<"logical"> context, thus matches the same
344 substring as a standalone C<a+>.  The following C<\1> eats the matched
345 string, thus making a zero-length assertion into an analogue of
346 C<(?>...)>.  (The difference of these two constructions is that the
347 second one uses a catching group, thus shifts ordinals of
348 backreferences in the rest of a regular expression.)
349
350 This construction is very useful for optimizations of "eternal"
351 matches, since it will not backtrack (see L<"Backtracking">).  Say,
352
353   / \( ( 
354          [^()]+ 
355        | 
356          \( [^()]* \)
357        )+
358     \) /x
359
360 will match a nonempty group with matching two-or-less-level-deep
361 parentheses.  It is very efficient in finding such groups.  However,
362 if there is no such group, it is going to take forever (on reasonably
363 long string), since there are so many different ways to split a long
364 string into several substrings (this is essentially what C<(.+)+> is
365 doing, and this is a subpattern of the above pattern).  Say, on
366 C<((()aaaaaaaaaaaaaaaaaa> the above pattern detects no-match in 5sec
367 (on kitchentop'96 processor), and each extra letter doubles this time.
368
369 However, a tiny modification of this
370
371   / \( ( 
372          (?> [^()]+ )
373        | 
374          \( [^()]* \)
375        )+
376     \) /x
377
378 which uses (?>...) matches exactly when the above one does (it is a
379 good excercise to check this), but finishes in a fourth of the above
380 time on a similar string with 1000000 C<a>s.
381
382 Note that on simple groups like the above C<(?> [^()]+ )> a similar
383 effect may be achieved by negative lookahead, as in C<[^()]+ (?! [^()] )>.
384 This was only 4 times slower on a string with 1000000 C<a>s.
385
386 =item C<(?(condition)yes-regexp|no-regexp)>
387
388 =item C<(?(condition)yes-regexp)>
389
390 Conditional expression.  C<(condition)> should be either an integer in
391 parentheses (which is valid if the corresponding pair of parentheses
392 matched), or lookahead/lookbehind/evaluate zero-width assertion.
393
394 Say,
395
396     / ( \( )? 
397       [^()]+ 
398       (?(1) \) )/x
399
400 matches a chunk of non-parentheses, possibly included in parentheses
401 themselves.
402
403 =item C<(?imstx)>
404
405 One or more embedded pattern-match modifiers.  This is particularly
406 useful for patterns that are specified in a table somewhere, some of
407 which want to be case sensitive, and some of which don't.  The case
408 insensitive ones need to include merely C<(?i)> at the front of the
409 pattern.  For example:
410
411     $pattern = "foobar";
412     if ( /$pattern/i )
413
414     # more flexible:
415
416     $pattern = "(?i)foobar";
417     if ( /$pattern/ )
418
419 Note that these modifiers are localized inside an enclosing group (if
420 any).  Say,
421
422     ( (?i) blah ) \s+ \1
423
424 (assuming C<x> modifier, and no C<i> modifier outside of this group)
425 will match a repeated (I<including the case>!) word C<blah> in any
426 case.
427
428 =back
429
430 The specific choice of question mark for this and the new minimal
431 matching construct was because 1) question mark is pretty rare in older
432 regular expressions, and 2) whenever you see one, you should stop
433 and "question" exactly what is going on.  That's psychology...
434
435 =head2 Backtracking
436
437 A fundamental feature of regular expression matching involves the
438 notion called I<backtracking>.  which is currently used (when needed)
439 by all regular expression quantifiers, namely C<*>, C<*?>, C<+>,
440 C<+?>, C<{n,m}>, and C<{n,m}?>.
441
442 For a regular expression to match, the I<entire> regular expression must
443 match, not just part of it.  So if the beginning of a pattern containing a
444 quantifier succeeds in a way that causes later parts in the pattern to
445 fail, the matching engine backs up and recalculates the beginning
446 part--that's why it's called backtracking.
447
448 Here is an example of backtracking:  Let's say you want to find the
449 word following "foo" in the string "Food is on the foo table.":
450
451     $_ = "Food is on the foo table.";
452     if ( /\b(foo)\s+(\w+)/i ) {
453         print "$2 follows $1.\n";
454     }
455
456 When the match runs, the first part of the regular expression (C<\b(foo)>)
457 finds a possible match right at the beginning of the string, and loads up
458 $1 with "Foo".  However, as soon as the matching engine sees that there's
459 no whitespace following the "Foo" that it had saved in $1, it realizes its
460 mistake and starts over again one character after where it had the
461 tentative match.  This time it goes all the way until the next occurrence
462 of "foo". The complete regular expression matches this time, and you get
463 the expected output of "table follows foo."
464
465 Sometimes minimal matching can help a lot.  Imagine you'd like to match
466 everything between "foo" and "bar".  Initially, you write something
467 like this:
468
469     $_ =  "The food is under the bar in the barn.";
470     if ( /foo(.*)bar/ ) {
471         print "got <$1>\n";
472     }
473
474 Which perhaps unexpectedly yields:
475
476   got <d is under the bar in the >
477
478 That's because C<.*> was greedy, so you get everything between the
479 I<first> "foo" and the I<last> "bar".  In this case, it's more effective
480 to use minimal matching to make sure you get the text between a "foo"
481 and the first "bar" thereafter.
482
483     if ( /foo(.*?)bar/ ) { print "got <$1>\n" }
484   got <d is under the >
485
486 Here's another example: let's say you'd like to match a number at the end
487 of a string, and you also want to keep the preceding part the match.
488 So you write this:
489
490     $_ = "I have 2 numbers: 53147";
491     if ( /(.*)(\d*)/ ) {                                # Wrong!
492         print "Beginning is <$1>, number is <$2>.\n";
493     }
494
495 That won't work at all, because C<.*> was greedy and gobbled up the
496 whole string. As C<\d*> can match on an empty string the complete
497 regular expression matched successfully.
498
499     Beginning is <I have 2 numbers: 53147>, number is <>.
500
501 Here are some variants, most of which don't work:
502
503     $_ = "I have 2 numbers: 53147";
504     @pats = qw{
505         (.*)(\d*)
506         (.*)(\d+)
507         (.*?)(\d*)
508         (.*?)(\d+)
509         (.*)(\d+)$
510         (.*?)(\d+)$
511         (.*)\b(\d+)$
512         (.*\D)(\d+)$
513     };
514
515     for $pat (@pats) {
516         printf "%-12s ", $pat;
517         if ( /$pat/ ) {
518             print "<$1> <$2>\n";
519         } else {
520             print "FAIL\n";
521         }
522     }
523
524 That will print out:
525
526     (.*)(\d*)    <I have 2 numbers: 53147> <>
527     (.*)(\d+)    <I have 2 numbers: 5314> <7>
528     (.*?)(\d*)   <> <>
529     (.*?)(\d+)   <I have > <2>
530     (.*)(\d+)$   <I have 2 numbers: 5314> <7>
531     (.*?)(\d+)$  <I have 2 numbers: > <53147>
532     (.*)\b(\d+)$ <I have 2 numbers: > <53147>
533     (.*\D)(\d+)$ <I have 2 numbers: > <53147>
534
535 As you see, this can be a bit tricky.  It's important to realize that a
536 regular expression is merely a set of assertions that gives a definition
537 of success.  There may be 0, 1, or several different ways that the
538 definition might succeed against a particular string.  And if there are
539 multiple ways it might succeed, you need to understand backtracking to know which variety of success you will achieve.
540
541 When using lookahead assertions and negations, this can all get even
542 tricker.  Imagine you'd like to find a sequence of non-digits not
543 followed by "123".  You might try to write that as
544
545         $_ = "ABC123";
546         if ( /^\D*(?!123)/ ) {                          # Wrong!
547             print "Yup, no 123 in $_\n";
548         }
549
550 But that isn't going to match; at least, not the way you're hoping.  It
551 claims that there is no 123 in the string.  Here's a clearer picture of
552 why it that pattern matches, contrary to popular expectations:
553
554     $x = 'ABC123' ;
555     $y = 'ABC445' ;
556
557     print "1: got $1\n" if $x =~ /^(ABC)(?!123)/ ;
558     print "2: got $1\n" if $y =~ /^(ABC)(?!123)/ ;
559
560     print "3: got $1\n" if $x =~ /^(\D*)(?!123)/ ;
561     print "4: got $1\n" if $y =~ /^(\D*)(?!123)/ ;
562
563 This prints
564
565     2: got ABC
566     3: got AB
567     4: got ABC
568
569 You might have expected test 3 to fail because it seems to a more
570 general purpose version of test 1.  The important difference between
571 them is that test 3 contains a quantifier (C<\D*>) and so can use
572 backtracking, whereas test 1 will not.  What's happening is
573 that you've asked "Is it true that at the start of $x, following 0 or more
574 non-digits, you have something that's not 123?"  If the pattern matcher had
575 let C<\D*> expand to "ABC", this would have caused the whole pattern to
576 fail.
577 The search engine will initially match C<\D*> with "ABC".  Then it will
578 try to match C<(?!123> with "123" which, of course, fails.  But because
579 a quantifier (C<\D*>) has been used in the regular expression, the
580 search engine can backtrack and retry the match differently
581 in the hope of matching the complete regular expression.
582
583 Well now,
584 the pattern really, I<really> wants to succeed, so it uses the
585 standard regexp back-off-and-retry and lets C<\D*> expand to just "AB" this
586 time.  Now there's indeed something following "AB" that is not
587 "123".  It's in fact "C123", which suffices.
588
589 We can deal with this by using both an assertion and a negation.  We'll
590 say that the first part in $1 must be followed by a digit, and in fact, it
591 must also be followed by something that's not "123".  Remember that the
592 lookaheads are zero-width expressions--they only look, but don't consume
593 any of the string in their match.  So rewriting this way produces what
594 you'd expect; that is, case 5 will fail, but case 6 succeeds:
595
596     print "5: got $1\n" if $x =~ /^(\D*)(?=\d)(?!123)/ ;
597     print "6: got $1\n" if $y =~ /^(\D*)(?=\d)(?!123)/ ;
598
599     6: got ABC
600
601 In other words, the two zero-width assertions next to each other work like
602 they're ANDed together, just as you'd use any builtin assertions:  C</^$/>
603 matches only if you're at the beginning of the line AND the end of the
604 line simultaneously.  The deeper underlying truth is that juxtaposition in
605 regular expressions always means AND, except when you write an explicit OR
606 using the vertical bar.  C</ab/> means match "a" AND (then) match "b",
607 although the attempted matches are made at different positions because "a"
608 is not a zero-width assertion, but a one-width assertion.
609
610 One warning: particularly complicated regular expressions can take
611 exponential time to solve due to the immense number of possible ways they
612 can use backtracking to try match.  For example this will take a very long
613 time to run
614
615     /((a{0,5}){0,5}){0,5}/
616
617 And if you used C<*>'s instead of limiting it to 0 through 5 matches, then
618 it would take literally forever--or until you ran out of stack space.
619
620 A powerful tool for optimizing such beasts is "independent" groups,
621 which do not backtrace (see L<C<(?E<gt>regexp)>>).  Note also that
622 zero-length lookahead/lookbehind assertions will not backtrace to make
623 the tail match, since they are in "logical" context: only the fact
624 whether they match or not is considered relevant.  For an example
625 where side-effects of a lookahead I<might> have influenced the
626 following match, see L<C<(?E<gt>regexp)>>.
627
628 =head2 Version 8 Regular Expressions
629
630 In case you're not familiar with the "regular" Version 8 regexp
631 routines, here are the pattern-matching rules not described above.
632
633 Any single character matches itself, unless it is a I<metacharacter>
634 with a special meaning described here or above.  You can cause
635 characters which normally function as metacharacters to be interpreted
636 literally by prefixing them with a "\" (e.g., "\." matches a ".", not any
637 character; "\\" matches a "\").  A series of characters matches that
638 series of characters in the target string, so the pattern C<blurfl>
639 would match "blurfl" in the target string.
640
641 You can specify a character class, by enclosing a list of characters
642 in C<[]>, which will match any one of the characters in the list.  If the
643 first character after the "[" is "^", the class matches any character not
644 in the list.  Within a list, the "-" character is used to specify a
645 range, so that C<a-z> represents all the characters between "a" and "z",
646 inclusive.  If you want "-" itself to be a member of a class, put it
647 at the start or end of the list, or escape it with a backslash.  (The
648 following all specify the same class of three characters: C<[-az]>,
649 C<[az-]>, and C<[a\-z]>.  All are different from C<[a-z]>, which
650 specifies a class containing twenty-six characters.)
651
652 Characters may be specified using a metacharacter syntax much like that
653 used in C: "\n" matches a newline, "\t" a tab, "\r" a carriage return,
654 "\f" a form feed, etc.  More generally, \I<nnn>, where I<nnn> is a string
655 of octal digits, matches the character whose ASCII value is I<nnn>.
656 Similarly, \xI<nn>, where I<nn> are hexadecimal digits, matches the
657 character whose ASCII value is I<nn>. The expression \cI<x> matches the
658 ASCII character control-I<x>.  Finally, the "." metacharacter matches any
659 character except "\n" (unless you use C</s>).
660
661 You can specify a series of alternatives for a pattern using "|" to
662 separate them, so that C<fee|fie|foe> will match any of "fee", "fie",
663 or "foe" in the target string (as would C<f(e|i|o)e>).  Note that the
664 first alternative includes everything from the last pattern delimiter
665 ("(", "[", or the beginning of the pattern) up to the first "|", and
666 the last alternative contains everything from the last "|" to the next
667 pattern delimiter.  For this reason, it's common practice to include
668 alternatives in parentheses, to minimize confusion about where they
669 start and end.
670
671 Note that alternatives are tried from left to right, so the first
672 alternative found for which the entire expression matches, is the one that
673 is chosen. This means that alternatives are not necessarily greedy. For
674 example: when mathing C<foo|foot> against "barefoot", only the "foo"
675 part will match, as that is the first alternative tried, and it successfully
676 matches the target string. (This might not seem important, but it is
677 important when you are capturing matched text using parentheses.)
678
679 Also note that "|" is interpreted as a literal within square brackets,
680 so if you write C<[fee|fie|foe]> you're really only matching C<[feio|]>.
681
682 Within a pattern, you may designate subpatterns for later reference by
683 enclosing them in parentheses, and you may refer back to the I<n>th
684 subpattern later in the pattern using the metacharacter \I<n>.
685 Subpatterns are numbered based on the left to right order of their
686 opening parenthesis.  Note that a backreference matches whatever
687 actually matched the subpattern in the string being examined, not the
688 rules for that subpattern.  Therefore, C<(0|0x)\d*\s\1\d*> will
689 match "0x1234 0x4321",but not "0x1234 01234", because subpattern 1
690 actually matched "0x", even though the rule C<0|0x> could
691 potentially match the leading 0 in the second number.
692
693 =head2 WARNING on \1 vs $1
694
695 Some people get too used to writing things like
696
697     $pattern =~ s/(\W)/\\\1/g;
698
699 This is grandfathered for the RHS of a substitute to avoid shocking the
700 B<sed> addicts, but it's a dirty habit to get into.  That's because in
701 PerlThink, the righthand side of a C<s///> is a double-quoted string.  C<\1> in
702 the usual double-quoted string means a control-A.  The customary Unix
703 meaning of C<\1> is kludged in for C<s///>.  However, if you get into the habit
704 of doing that, you get yourself into trouble if you then add an C</e>
705 modifier.
706
707     s/(\d+)/ \1 + 1 /eg;
708
709 Or if you try to do
710
711     s/(\d+)/\1000/;
712
713 You can't disambiguate that by saying C<\{1}000>, whereas you can fix it with
714 C<${1}000>.  Basically, the operation of interpolation should not be confused
715 with the operation of matching a backreference.  Certainly they mean two
716 different things on the I<left> side of the C<s///>.
717
718 =head2 SEE ALSO
719
720 L<perlop/"Regexp Quote-Like Operators">.
721
722 L<perlfunc/pos>.
723
724 L<perllocale>.
725
726 "Mastering Regular Expressions" (see L<perlbook>) by Jeffrey Friedl.