home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / perlre.pod < prev    next >
Text File  |  2003-11-07  |  51KB  |  1,340 lines

  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.  
  8.  
  9. If you haven't used regular expressions before, a quick-start
  10. introduction is available in L<perlrequick>, and a longer tutorial
  11. introduction is available in L<perlretut>.
  12.  
  13. For reference on how regular expressions are used in matching
  14. operations, plus various examples of the same, see discussions of
  15. C<m//>, C<s///>, C<qr//> and C<??> in L<perlop/"Regexp Quote-Like
  16. Operators">.
  17.  
  18. Matching operations can have various modifiers.  Modifiers
  19. that relate to the interpretation of the regular expression inside
  20. are listed below.  Modifiers that alter the way a regular expression
  21. is used by Perl are detailed in L<perlop/"Regexp Quote-Like Operators"> and 
  22. L<perlop/"Gory details of parsing quoted constructs">.
  23.  
  24. =over 4
  25.  
  26. =item i
  27.  
  28. Do case-insensitive pattern matching.
  29.  
  30. If C<use locale> is in effect, the case map is taken from the current
  31. locale.  See L<perllocale>.
  32.  
  33. =item m
  34.  
  35. Treat string as multiple lines.  That is, change "^" and "$" from matching
  36. the start or end of the string to matching the start or end of any
  37. line anywhere within the string.
  38.  
  39. =item s
  40.  
  41. Treat string as single line.  That is, change "." to match any character
  42. whatsoever, even a newline, which normally it would not match.
  43.  
  44. The C</s> and C</m> modifiers both override the C<$*> setting.  That
  45. is, no matter what C<$*> contains, C</s> without C</m> will force
  46. "^" to match only at the beginning of the string and "$" to match
  47. only at the end (or just before a newline at the end) of the string.
  48. Together, as /ms, they let the "." match any character whatsoever,
  49. while still allowing "^" and "$" to match, respectively, just after
  50. and just before newlines within the string.
  51.  
  52. =item x
  53.  
  54. Extend your pattern's legibility by permitting whitespace and comments.
  55.  
  56. =back
  57.  
  58. These are usually written as "the C</x> modifier", even though the delimiter
  59. in question might not really be a slash.  Any of these
  60. modifiers may also be embedded within the regular expression itself using
  61. the C<(?...)> construct.  See below.
  62.  
  63. The C</x> modifier itself needs a little more explanation.  It tells
  64. the regular expression parser to ignore whitespace that is neither
  65. backslashed nor within a character class.  You can use this to break up
  66. your regular expression into (slightly) more readable parts.  The C<#>
  67. character is also treated as a metacharacter introducing a comment,
  68. just as in ordinary Perl code.  This also means that if you want real
  69. whitespace or C<#> characters in the pattern (outside a character
  70. class, where they are unaffected by C</x>), that you'll either have to 
  71. escape them or encode them using octal or hex escapes.  Taken together,
  72. these features go a long way towards making Perl's regular expressions
  73. more readable.  Note that you have to be careful not to include the
  74. pattern delimiter in the comment--perl has no way of knowing you did
  75. not intend to close the pattern early.  See the C-comment deletion code
  76. in L<perlop>.
  77.  
  78. =head2 Regular Expressions
  79.  
  80. The patterns used in Perl pattern matching derive from supplied in
  81. the Version 8 regex routines.  (The routines are derived
  82. (distantly) from Henry Spencer's freely redistributable reimplementation
  83. of the V8 routines.)  See L<Version 8 Regular Expressions> for
  84. details.
  85.  
  86. In particular the following metacharacters have their standard I<egrep>-ish
  87. meanings:
  88.  
  89.     \    Quote the next metacharacter
  90.     ^    Match the beginning of the line
  91.     .    Match any character (except newline)
  92.     $    Match the end of the line (or before newline at the end)
  93.     |    Alternation
  94.     ()    Grouping
  95.     []    Character class
  96.  
  97. By default, the "^" character is guaranteed to match only the
  98. beginning of the string, the "$" character only the end (or before the
  99. newline at the end), and Perl does certain optimizations with the
  100. assumption that the string contains only one line.  Embedded newlines
  101. will not be matched by "^" or "$".  You may, however, wish to treat a
  102. string as a multi-line buffer, such that the "^" will match after any
  103. newline within the string, and "$" will match before any newline.  At the
  104. cost of a little more overhead, you can do this by using the /m modifier
  105. on the pattern match operator.  (Older programs did this by setting C<$*>,
  106. but this practice is now deprecated.)
  107.  
  108. To simplify multi-line substitutions, the "." character never matches a
  109. newline unless you use the C</s> modifier, which in effect tells Perl to pretend
  110. the string is a single line--even if it isn't.  The C</s> modifier also
  111. overrides the setting of C<$*>, in case you have some (badly behaved) older
  112. code that sets it in another module.
  113.  
  114. The following standard quantifiers are recognized:
  115.  
  116.     *       Match 0 or more times
  117.     +       Match 1 or more times
  118.     ?       Match 1 or 0 times
  119.     {n}    Match exactly n times
  120.     {n,}   Match at least n times
  121.     {n,m}  Match at least n but not more than m times
  122.  
  123. (If a curly bracket occurs in any other context, it is treated
  124. as a regular character.  In particular, the lower bound
  125. is not optional.)  The "*" modifier is equivalent to C<{0,}>, the "+"
  126. modifier to C<{1,}>, and the "?" modifier to C<{0,1}>.  n and m are limited
  127. to integral values less than a preset limit defined when perl is built.
  128. This is usually 32766 on the most common platforms.  The actual limit can
  129. be seen in the error message generated by code such as this:
  130.  
  131.     $_ **= $_ , / {$_} / for 2 .. 42;
  132.  
  133. By default, a quantified subpattern is "greedy", that is, it will match as
  134. many times as possible (given a particular starting location) while still
  135. allowing the rest of the pattern to match.  If you want it to match the
  136. minimum number of times possible, follow the quantifier with a "?".  Note
  137. that the meanings don't change, just the "greediness":
  138.  
  139.     *?       Match 0 or more times
  140.     +?       Match 1 or more times
  141.     ??       Match 0 or 1 time
  142.     {n}?   Match exactly n times
  143.     {n,}?  Match at least n times
  144.     {n,m}? Match at least n but not more than m times
  145.  
  146. Because patterns are processed as double quoted strings, the following
  147. also work:
  148.  
  149.     \t        tab                   (HT, TAB)
  150.     \n        newline               (LF, NL)
  151.     \r        return                (CR)
  152.     \f        form feed             (FF)
  153.     \a        alarm (bell)          (BEL)
  154.     \e        escape (think troff)  (ESC)
  155.     \033    octal char (think of a PDP-11)
  156.     \x1B    hex char
  157.     \x{263a}    wide hex char         (Unicode SMILEY)
  158.     \c[        control char
  159.     \N{name}    named char
  160.     \l        lowercase next char (think vi)
  161.     \u        uppercase next char (think vi)
  162.     \L        lowercase till \E (think vi)
  163.     \U        uppercase till \E (think vi)
  164.     \E        end case modification (think vi)
  165.     \Q        quote (disable) pattern metacharacters till \E
  166.  
  167. If C<use locale> is in effect, the case map used by C<\l>, C<\L>, C<\u>
  168. and C<\U> is taken from the current locale.  See L<perllocale>.  For
  169. documentation of C<\N{name}>, see L<charnames>.
  170.  
  171. You cannot include a literal C<$> or C<@> within a C<\Q> sequence.
  172. An unescaped C<$> or C<@> interpolates the corresponding variable,
  173. while escaping will cause the literal string C<\$> to be matched.
  174. You'll need to write something like C<m/\Quser\E\@\Qhost/>.
  175.  
  176. In addition, Perl defines the following:
  177.  
  178.     \w    Match a "word" character (alphanumeric plus "_")
  179.     \W    Match a non-"word" character
  180.     \s    Match a whitespace character
  181.     \S    Match a non-whitespace character
  182.     \d    Match a digit character
  183.     \D    Match a non-digit character
  184.     \pP    Match P, named property.  Use \p{Prop} for longer names.
  185.     \PP    Match non-P
  186.     \X    Match eXtended Unicode "combining character sequence",
  187.         equivalent to (?:\PM\pM*)
  188.     \C    Match a single C char (octet) even under Unicode.
  189.     NOTE: breaks up characters into their UTF-8 bytes,
  190.     so you may end up with malformed pieces of UTF-8.
  191.     Unsupported in lookbehind.
  192.  
  193. A C<\w> matches a single alphanumeric character (an alphabetic
  194. character, or a decimal digit) or C<_>, not a whole word.  Use C<\w+>
  195. to match a string of Perl-identifier characters (which isn't the same
  196. as matching an English word).  If C<use locale> is in effect, the list
  197. of alphabetic characters generated by C<\w> is taken from the current
  198. locale.  See L<perllocale>.  You may use C<\w>, C<\W>, C<\s>, C<\S>,
  199. C<\d>, and C<\D> within character classes, but if you try to use them
  200. as endpoints of a range, that's not a range, the "-" is understood
  201. literally.  If Unicode is in effect, C<\s> matches also "\x{85}",
  202. "\x{2028}, and "\x{2029}", see L<perlunicode> for more details about
  203. C<\pP>, C<\PP>, and C<\X>, and L<perluniintro> about Unicode in general.
  204. You can define your own C<\p> and C<\P> propreties, see L<perlunicode>.
  205.  
  206. The POSIX character class syntax
  207.  
  208.     [:class:]
  209.  
  210. is also available.  The available classes and their backslash
  211. equivalents (if available) are as follows:
  212.  
  213.     alpha
  214.     alnum
  215.     ascii
  216.     blank        [1]
  217.     cntrl
  218.     digit       \d
  219.     graph
  220.     lower
  221.     print
  222.     punct
  223.     space       \s    [2]
  224.     upper
  225.     word        \w    [3]
  226.     xdigit
  227.  
  228. =over
  229.  
  230. =item [1]
  231.  
  232. A GNU extension equivalent to C<[ \t]>, `all horizontal whitespace'.
  233.  
  234. =item [2]
  235.  
  236. Not exactly equivalent to C<\s> since the C<[[:space:]]> includes
  237. also the (very rare) `vertical tabulator', "\ck", chr(11).
  238.  
  239. =item [3]
  240.  
  241. A Perl extension, see above.
  242.  
  243. =back
  244.  
  245. For example use C<[:upper:]> to match all the uppercase characters.
  246. Note that the C<[]> are part of the C<[::]> construct, not part of the
  247. whole character class.  For example:
  248.  
  249.     [01[:alpha:]%]
  250.  
  251. matches zero, one, any alphabetic character, and the percentage sign.
  252.  
  253. The following equivalences to Unicode \p{} constructs and equivalent
  254. backslash character classes (if available), will hold:
  255.  
  256.     [:...:]    \p{...}        backslash
  257.  
  258.     alpha       IsAlpha
  259.     alnum       IsAlnum
  260.     ascii       IsASCII
  261.     blank    IsSpace
  262.     cntrl       IsCntrl
  263.     digit       IsDigit        \d
  264.     graph       IsGraph
  265.     lower       IsLower
  266.     print       IsPrint
  267.     punct       IsPunct
  268.     space       IsSpace
  269.                 IsSpacePerl    \s
  270.     upper       IsUpper
  271.     word        IsWord
  272.     xdigit      IsXDigit
  273.  
  274. For example C<[:lower:]> and C<\p{IsLower}> are equivalent.
  275.  
  276. If the C<utf8> pragma is not used but the C<locale> pragma is, the
  277. classes correlate with the usual isalpha(3) interface (except for
  278. `word' and `blank').
  279.  
  280. The assumedly non-obviously named classes are:
  281.  
  282. =over 4
  283.  
  284. =item cntrl
  285.  
  286. Any control character.  Usually characters that don't produce output as
  287. such but instead control the terminal somehow: for example newline and
  288. backspace are control characters.  All characters with ord() less than
  289. 32 are most often classified as control characters (assuming ASCII,
  290. the ISO Latin character sets, and Unicode), as is the character with
  291. the ord() value of 127 (C<DEL>).
  292.  
  293. =item graph
  294.  
  295. Any alphanumeric or punctuation (special) character.
  296.  
  297. =item print
  298.  
  299. Any alphanumeric or punctuation (special) character or the space character.
  300.  
  301. =item punct
  302.  
  303. Any punctuation (special) character.
  304.  
  305. =item xdigit
  306.  
  307. Any hexadecimal digit.  Though this may feel silly ([0-9A-Fa-f] would
  308. work just fine) it is included for completeness.
  309.  
  310. =back
  311.  
  312. You can negate the [::] character classes by prefixing the class name
  313. with a '^'. This is a Perl extension.  For example:
  314.  
  315.     POSIX    traditional Unicode
  316.  
  317.     [:^digit:]      \D      \P{IsDigit}
  318.     [:^space:]        \S        \P{IsSpace}
  319.     [:^word:]        \W        \P{IsWord}
  320.  
  321. Perl respects the POSIX standard in that POSIX character classes are
  322. only supported within a character class.  The POSIX character classes
  323. [.cc.] and [=cc=] are recognized but B<not> supported and trying to
  324. use them will cause an error.
  325.  
  326. Perl defines the following zero-width assertions:
  327.  
  328.     \b    Match a word boundary
  329.     \B    Match a non-(word boundary)
  330.     \A    Match only at beginning of string
  331.     \Z    Match only at end of string, or before newline at the end
  332.     \z    Match only at end of string
  333.     \G    Match only at pos() (e.g. at the end-of-match position
  334.         of prior m//g)
  335.  
  336. A word boundary (C<\b>) is a spot between two characters
  337. that has a C<\w> on one side of it and a C<\W> on the other side
  338. of it (in either order), counting the imaginary characters off the
  339. beginning and end of the string as matching a C<\W>.  (Within
  340. character classes C<\b> represents backspace rather than a word
  341. boundary, just as it normally does in any double-quoted string.)
  342. The C<\A> and C<\Z> are just like "^" and "$", except that they
  343. won't match multiple times when the C</m> modifier is used, while
  344. "^" and "$" will match at every internal line boundary.  To match
  345. the actual end of the string and not ignore an optional trailing
  346. newline, use C<\z>.
  347.  
  348. The C<\G> assertion can be used to chain global matches (using
  349. C<m//g>), as described in L<perlop/"Regexp Quote-Like Operators">.
  350. It is also useful when writing C<lex>-like scanners, when you have
  351. several patterns that you want to match against consequent substrings
  352. of your string, see the previous reference.  The actual location
  353. where C<\G> will match can also be influenced by using C<pos()> as
  354. an lvalue: see L<perlfunc/pos>. Currently C<\G> is only fully
  355. supported when anchored to the start of the pattern; while it
  356. is permitted to use it elsewhere, as in C</(?<=\G..)./g>, some
  357. such uses (C</.\G/g>, for example) currently cause problems, and
  358. it is recommended that you avoid such usage for now.
  359.  
  360. The bracketing construct C<( ... )> creates capture buffers.  To
  361. refer to the digit'th buffer use \<digit> within the
  362. match.  Outside the match use "$" instead of "\".  (The
  363. \<digit> notation works in certain circumstances outside 
  364. the match.  See the warning below about \1 vs $1 for details.)
  365. Referring back to another part of the match is called a
  366. I<backreference>.
  367.  
  368. There is no limit to the number of captured substrings that you may
  369. use.  However Perl also uses \10, \11, etc. as aliases for \010,
  370. \011, etc.  (Recall that 0 means octal, so \011 is the character at
  371. number 9 in your coded character set; which would be the 10th character,
  372. a horizontal tab under ASCII.)  Perl resolves this 
  373. ambiguity by interpreting \10 as a backreference only if at least 10 
  374. left parentheses have opened before it.  Likewise \11 is a 
  375. backreference only if at least 11 left parentheses have opened 
  376. before it.  And so on.  \1 through \9 are always interpreted as 
  377. backreferences.
  378.  
  379. Examples:
  380.  
  381.     s/^([^ ]*) *([^ ]*)/$2 $1/;     # swap first two words
  382.  
  383.      if (/(.)\1/) {                 # find first doubled char
  384.          print "'$1' is the first doubled character\n";
  385.      }
  386.  
  387.     if (/Time: (..):(..):(..)/) {   # parse out values
  388.     $hours = $1;
  389.     $minutes = $2;
  390.     $seconds = $3;
  391.     }
  392.  
  393. Several special variables also refer back to portions of the previous
  394. match.  C<$+> returns whatever the last bracket match matched.
  395. C<$&> returns the entire matched string.  (At one point C<$0> did
  396. also, but now it returns the name of the program.)  C<$`> returns
  397. everything before the matched string.  C<$'> returns everything
  398. after the matched string. And C<$^N> contains whatever was matched by
  399. the most-recently closed group (submatch). C<$^N> can be used in
  400. extended patterns (see below), for example to assign a submatch to a
  401. variable. 
  402.  
  403. The numbered match variables ($1, $2, $3, etc.) and the related punctuation
  404. set (C<$+>, C<$&>, C<$`>, C<$'>, and C<$^N>) are all dynamically scoped
  405. until the end of the enclosing block or until the next successful
  406. match, whichever comes first.  (See L<perlsyn/"Compound Statements">.)
  407.  
  408. B<NOTE>: failed matches in Perl do not reset the match variables,
  409. which makes easier to write code that tests for a series of more
  410. specific cases and remembers the best match.
  411.  
  412. B<WARNING>: Once Perl sees that you need one of C<$&>, C<$`>, or
  413. C<$'> anywhere in the program, it has to provide them for every
  414. pattern match.  This may substantially slow your program.  Perl
  415. uses the same mechanism to produce $1, $2, etc, so you also pay a
  416. price for each pattern that contains capturing parentheses.  (To
  417. avoid this cost while retaining the grouping behaviour, use the
  418. extended regular expression C<(?: ... )> instead.)  But if you never
  419. use C<$&>, C<$`> or C<$'>, then patterns I<without> capturing
  420. parentheses will not be penalized.  So avoid C<$&>, C<$'>, and C<$`>
  421. if you can, but if you can't (and some algorithms really appreciate
  422. them), once you've used them once, use them at will, because you've
  423. already paid the price.  As of 5.005, C<$&> is not so costly as the
  424. other two.
  425.  
  426. Backslashed metacharacters in Perl are alphanumeric, such as C<\b>,
  427. C<\w>, C<\n>.  Unlike some other regular expression languages, there
  428. are no backslashed symbols that aren't alphanumeric.  So anything
  429. that looks like \\, \(, \), \<, \>, \{, or \} is always
  430. interpreted as a literal character, not a metacharacter.  This was
  431. once used in a common idiom to disable or quote the special meanings
  432. of regular expression metacharacters in a string that you want to
  433. use for a pattern. Simply quote all non-"word" characters:
  434.  
  435.     $pattern =~ s/(\W)/\\$1/g;
  436.  
  437. (If C<use locale> is set, then this depends on the current locale.)
  438. Today it is more common to use the quotemeta() function or the C<\Q>
  439. metaquoting escape sequence to disable all metacharacters' special
  440. meanings like this:
  441.  
  442.     /$unquoted\Q$quoted\E$unquoted/
  443.  
  444. Beware that if you put literal backslashes (those not inside
  445. interpolated variables) between C<\Q> and C<\E>, double-quotish
  446. backslash interpolation may lead to confusing results.  If you
  447. I<need> to use literal backslashes within C<\Q...\E>,
  448. consult L<perlop/"Gory details of parsing quoted constructs">.
  449.  
  450. =head2 Extended Patterns
  451.  
  452. Perl also defines a consistent extension syntax for features not
  453. found in standard tools like B<awk> and B<lex>.  The syntax is a
  454. pair of parentheses with a question mark as the first thing within
  455. the parentheses.  The character after the question mark indicates
  456. the extension.
  457.  
  458. The stability of these extensions varies widely.  Some have been
  459. part of the core language for many years.  Others are experimental
  460. and may change without warning or be completely removed.  Check
  461. the documentation on an individual feature to verify its current
  462. status.
  463.  
  464. A question mark was chosen for this and for the minimal-matching
  465. construct because 1) question marks are rare in older regular
  466. expressions, and 2) whenever you see one, you should stop and
  467. "question" exactly what is going on.  That's psychology...
  468.  
  469. =over 10
  470.  
  471. =item C<(?#text)>
  472.  
  473. A comment.  The text is ignored.  If the C</x> modifier enables
  474. whitespace formatting, a simple C<#> will suffice.  Note that Perl closes
  475. the comment as soon as it sees a C<)>, so there is no way to put a literal
  476. C<)> in the comment.
  477.  
  478. =item C<(?imsx-imsx)>
  479.  
  480. One or more embedded pattern-match modifiers, to be turned on (or
  481. turned off, if preceded by C<->) for the remainder of the pattern or
  482. the remainder of the enclosing pattern group (if any). This is
  483. particularly useful for dynamic patterns, such as those read in from a
  484. configuration file, read in as an argument, are specified in a table
  485. somewhere, etc.  Consider the case that some of which want to be case
  486. sensitive and some do not.  The case insensitive ones need to include
  487. merely C<(?i)> at the front of the pattern.  For example:
  488.  
  489.     $pattern = "foobar";
  490.     if ( /$pattern/i ) { } 
  491.  
  492.     # more flexible:
  493.  
  494.     $pattern = "(?i)foobar";
  495.     if ( /$pattern/ ) { } 
  496.  
  497. These modifiers are restored at the end of the enclosing group. For example,
  498.  
  499.     ( (?i) blah ) \s+ \1
  500.  
  501. will match a repeated (I<including the case>!) word C<blah> in any
  502. case, assuming C<x> modifier, and no C<i> modifier outside this
  503. group.
  504.  
  505. =item C<(?:pattern)>
  506.  
  507. =item C<(?imsx-imsx:pattern)>
  508.  
  509. This is for clustering, not capturing; it groups subexpressions like
  510. "()", but doesn't make backreferences as "()" does.  So
  511.  
  512.     @fields = split(/\b(?:a|b|c)\b/)
  513.  
  514. is like
  515.  
  516.     @fields = split(/\b(a|b|c)\b/)
  517.  
  518. but doesn't spit out extra fields.  It's also cheaper not to capture
  519. characters if you don't need to.
  520.  
  521. Any letters between C<?> and C<:> act as flags modifiers as with
  522. C<(?imsx-imsx)>.  For example, 
  523.  
  524.     /(?s-i:more.*than).*million/i
  525.  
  526. is equivalent to the more verbose
  527.  
  528.     /(?:(?s-i)more.*than).*million/i
  529.  
  530. =item C<(?=pattern)>
  531.  
  532. A zero-width positive look-ahead assertion.  For example, C</\w+(?=\t)/>
  533. matches a word followed by a tab, without including the tab in C<$&>.
  534.  
  535. =item C<(?!pattern)>
  536.  
  537. A zero-width negative look-ahead assertion.  For example C</foo(?!bar)/>
  538. matches any occurrence of "foo" that isn't followed by "bar".  Note
  539. however that look-ahead and look-behind are NOT the same thing.  You cannot
  540. use this for look-behind.
  541.  
  542. If you are looking for a "bar" that isn't preceded by a "foo", C</(?!foo)bar/>
  543. will not do what you want.  That's because the C<(?!foo)> is just saying that
  544. the next thing cannot be "foo"--and it's not, it's a "bar", so "foobar" will
  545. match.  You would have to do something like C</(?!foo)...bar/> for that.   We
  546. say "like" because there's the case of your "bar" not having three characters
  547. before it.  You could cover that this way: C</(?:(?!foo)...|^.{0,2})bar/>.
  548. Sometimes it's still easier just to say:
  549.  
  550.     if (/bar/ && $` !~ /foo$/)
  551.  
  552. For look-behind see below.
  553.  
  554. =item C<(?<=pattern)>
  555.  
  556. A zero-width positive look-behind assertion.  For example, C</(?<=\t)\w+/>
  557. matches a word that follows a tab, without including the tab in C<$&>.
  558. Works only for fixed-width look-behind.
  559.  
  560. =item C<(?<!pattern)>
  561.  
  562. A zero-width negative look-behind assertion.  For example C</(?<!bar)foo/>
  563. matches any occurrence of "foo" that does not follow "bar".  Works
  564. only for fixed-width look-behind.
  565.  
  566. =item C<(?{ code })>
  567.  
  568. B<WARNING>: This extended regular expression feature is considered
  569. highly experimental, and may be changed or deleted without notice.
  570.  
  571. This zero-width assertion evaluates any embedded Perl code.  It
  572. always succeeds, and its C<code> is not interpolated.  Currently,
  573. the rules to determine where the C<code> ends are somewhat convoluted.
  574.  
  575. This feature can be used together with the special variable C<$^N> to
  576. capture the results of submatches in variables without having to keep
  577. track of the number of nested parentheses. For example:
  578.  
  579.   $_ = "The brown fox jumps over the lazy dog";
  580.   /the (\S+)(?{ $color = $^N }) (\S+)(?{ $animal = $^N })/i;
  581.   print "color = $color, animal = $animal\n";
  582.  
  583. The C<code> is properly scoped in the following sense: If the assertion
  584. is backtracked (compare L<"Backtracking">), all changes introduced after
  585. C<local>ization are undone, so that
  586.  
  587.   $_ = 'a' x 8;
  588.   m< 
  589.      (?{ $cnt = 0 })            # Initialize $cnt.
  590.      (
  591.        a 
  592.        (?{
  593.            local $cnt = $cnt + 1;    # Update $cnt, backtracking-safe.
  594.        })
  595.      )*  
  596.      aaaa
  597.      (?{ $res = $cnt })            # On success copy to non-localized
  598.                     # location.
  599.    >x;
  600.  
  601. will set C<$res = 4>.  Note that after the match, $cnt returns to the globally
  602. introduced value, because the scopes that restrict C<local> operators
  603. are unwound.
  604.  
  605. This assertion may be used as a C<(?(condition)yes-pattern|no-pattern)>
  606. switch.  If I<not> used in this way, the result of evaluation of
  607. C<code> is put into the special variable C<$^R>.  This happens
  608. immediately, so C<$^R> can be used from other C<(?{ code })> assertions
  609. inside the same regular expression.
  610.  
  611. The assignment to C<$^R> above is properly localized, so the old
  612. value of C<$^R> is restored if the assertion is backtracked; compare
  613. L<"Backtracking">.
  614.  
  615. For reasons of security, this construct is forbidden if the regular
  616. expression involves run-time interpolation of variables, unless the
  617. perilous C<use re 'eval'> pragma has been used (see L<re>), or the
  618. variables contain results of C<qr//> operator (see
  619. L<perlop/"qr/STRING/imosx">).  
  620.  
  621. This restriction is because of the wide-spread and remarkably convenient
  622. custom of using run-time determined strings as patterns.  For example:
  623.  
  624.     $re = <>;
  625.     chomp $re;
  626.     $string =~ /$re/;
  627.  
  628. Before Perl knew how to execute interpolated code within a pattern,
  629. this operation was completely safe from a security point of view,
  630. although it could raise an exception from an illegal pattern.  If
  631. you turn on the C<use re 'eval'>, though, it is no longer secure,
  632. so you should only do so if you are also using taint checking.
  633. Better yet, use the carefully constrained evaluation within a Safe
  634. compartment.  See L<perlsec> for details about both these mechanisms.
  635.  
  636. =item C<(??{ code })>
  637.  
  638. B<WARNING>: This extended regular expression feature is considered
  639. highly experimental, and may be changed or deleted without notice.
  640. A simplified version of the syntax may be introduced for commonly
  641. used idioms.
  642.  
  643. This is a "postponed" regular subexpression.  The C<code> is evaluated
  644. at run time, at the moment this subexpression may match.  The result
  645. of evaluation is considered as a regular expression and matched as
  646. if it were inserted instead of this construct.
  647.  
  648. The C<code> is not interpolated.  As before, the rules to determine
  649. where the C<code> ends are currently somewhat convoluted.
  650.  
  651. The following pattern matches a parenthesized group:
  652.  
  653.   $re = qr{
  654.          \(
  655.          (?:
  656.         (?> [^()]+ )    # Non-parens without backtracking
  657.           |
  658.         (??{ $re })    # Group with matching parens
  659.          )*
  660.          \)
  661.       }x;
  662.  
  663. =item C<< (?>pattern) >>
  664.  
  665. B<WARNING>: This extended regular expression feature is considered
  666. highly experimental, and may be changed or deleted without notice.
  667.  
  668. An "independent" subexpression, one which matches the substring
  669. that a I<standalone> C<pattern> would match if anchored at the given
  670. position, and it matches I<nothing other than this substring>.  This
  671. construct is useful for optimizations of what would otherwise be
  672. "eternal" matches, because it will not backtrack (see L<"Backtracking">).
  673. It may also be useful in places where the "grab all you can, and do not
  674. give anything back" semantic is desirable.
  675.  
  676. For example: C<< ^(?>a*)ab >> will never match, since C<< (?>a*) >>
  677. (anchored at the beginning of string, as above) will match I<all>
  678. characters C<a> at the beginning of string, leaving no C<a> for
  679. C<ab> to match.  In contrast, C<a*ab> will match the same as C<a+b>,
  680. since the match of the subgroup C<a*> is influenced by the following
  681. group C<ab> (see L<"Backtracking">).  In particular, C<a*> inside
  682. C<a*ab> will match fewer characters than a standalone C<a*>, since
  683. this makes the tail match.
  684.  
  685. An effect similar to C<< (?>pattern) >> may be achieved by writing
  686. C<(?=(pattern))\1>.  This matches the same substring as a standalone
  687. C<a+>, and the following C<\1> eats the matched string; it therefore
  688. makes a zero-length assertion into an analogue of C<< (?>...) >>.
  689. (The difference between these two constructs is that the second one
  690. uses a capturing group, thus shifting ordinals of backreferences
  691. in the rest of a regular expression.)
  692.  
  693. Consider this pattern:
  694.  
  695.     m{ \(
  696.       ( 
  697.         [^()]+        # x+
  698.           | 
  699.             \( [^()]* \)
  700.           )+
  701.        \) 
  702.      }x
  703.  
  704. That will efficiently match a nonempty group with matching parentheses
  705. two levels deep or less.  However, if there is no such group, it
  706. will take virtually forever on a long string.  That's because there
  707. are so many different ways to split a long string into several
  708. substrings.  This is what C<(.+)+> is doing, and C<(.+)+> is similar
  709. to a subpattern of the above pattern.  Consider how the pattern
  710. above detects no-match on C<((()aaaaaaaaaaaaaaaaaa> in several
  711. seconds, but that each extra letter doubles this time.  This
  712. exponential performance will make it appear that your program has
  713. hung.  However, a tiny change to this pattern
  714.  
  715.     m{ \( 
  716.       ( 
  717.         (?> [^()]+ )    # change x+ above to (?> x+ )
  718.           | 
  719.             \( [^()]* \)
  720.           )+
  721.        \) 
  722.      }x
  723.  
  724. which uses C<< (?>...) >> matches exactly when the one above does (verifying
  725. this yourself would be a productive exercise), but finishes in a fourth
  726. the time when used on a similar string with 1000000 C<a>s.  Be aware,
  727. however, that this pattern currently triggers a warning message under
  728. the C<use warnings> pragma or B<-w> switch saying it
  729. C<"matches null string many times in regex">.
  730.  
  731. On simple groups, such as the pattern C<< (?> [^()]+ ) >>, a comparable
  732. effect may be achieved by negative look-ahead, as in C<[^()]+ (?! [^()] )>.
  733. This was only 4 times slower on a string with 1000000 C<a>s.
  734.  
  735. The "grab all you can, and do not give anything back" semantic is desirable
  736. in many situations where on the first sight a simple C<()*> looks like
  737. the correct solution.  Suppose we parse text with comments being delimited
  738. by C<#> followed by some optional (horizontal) whitespace.  Contrary to
  739. its appearance, C<#[ \t]*> I<is not> the correct subexpression to match
  740. the comment delimiter, because it may "give up" some whitespace if
  741. the remainder of the pattern can be made to match that way.  The correct
  742. answer is either one of these:
  743.  
  744.     (?>#[ \t]*)
  745.     #[ \t]*(?![ \t])
  746.  
  747. For example, to grab non-empty comments into $1, one should use either
  748. one of these:
  749.  
  750.     / (?> \# [ \t]* ) (        .+ ) /x;
  751.     /     \# [ \t]*   ( [^ \t] .* ) /x;
  752.  
  753. Which one you pick depends on which of these expressions better reflects
  754. the above specification of comments.
  755.  
  756. =item C<(?(condition)yes-pattern|no-pattern)>
  757.  
  758. =item C<(?(condition)yes-pattern)>
  759.  
  760. B<WARNING>: This extended regular expression feature is considered
  761. highly experimental, and may be changed or deleted without notice.
  762.  
  763. Conditional expression.  C<(condition)> should be either an integer in
  764. parentheses (which is valid if the corresponding pair of parentheses
  765. matched), or look-ahead/look-behind/evaluate zero-width assertion.
  766.  
  767. For example:
  768.  
  769.     m{ ( \( )? 
  770.        [^()]+ 
  771.        (?(1) \) ) 
  772.      }x
  773.  
  774. matches a chunk of non-parentheses, possibly included in parentheses
  775. themselves.
  776.  
  777. =back
  778.  
  779. =head2 Backtracking
  780.  
  781. NOTE: This section presents an abstract approximation of regular
  782. expression behavior.  For a more rigorous (and complicated) view of
  783. the rules involved in selecting a match among possible alternatives,
  784. see L<Combining pieces together>.
  785.  
  786. A fundamental feature of regular expression matching involves the
  787. notion called I<backtracking>, which is currently used (when needed)
  788. by all regular expression quantifiers, namely C<*>, C<*?>, C<+>,
  789. C<+?>, C<{n,m}>, and C<{n,m}?>.  Backtracking is often optimized
  790. internally, but the general principle outlined here is valid.
  791.  
  792. For a regular expression to match, the I<entire> regular expression must
  793. match, not just part of it.  So if the beginning of a pattern containing a
  794. quantifier succeeds in a way that causes later parts in the pattern to
  795. fail, the matching engine backs up and recalculates the beginning
  796. part--that's why it's called backtracking.
  797.  
  798. Here is an example of backtracking:  Let's say you want to find the
  799. word following "foo" in the string "Food is on the foo table.":
  800.  
  801.     $_ = "Food is on the foo table.";
  802.     if ( /\b(foo)\s+(\w+)/i ) {
  803.     print "$2 follows $1.\n";
  804.     }
  805.  
  806. When the match runs, the first part of the regular expression (C<\b(foo)>)
  807. finds a possible match right at the beginning of the string, and loads up
  808. $1 with "Foo".  However, as soon as the matching engine sees that there's
  809. no whitespace following the "Foo" that it had saved in $1, it realizes its
  810. mistake and starts over again one character after where it had the
  811. tentative match.  This time it goes all the way until the next occurrence
  812. of "foo". The complete regular expression matches this time, and you get
  813. the expected output of "table follows foo."
  814.  
  815. Sometimes minimal matching can help a lot.  Imagine you'd like to match
  816. everything between "foo" and "bar".  Initially, you write something
  817. like this:
  818.  
  819.     $_ =  "The food is under the bar in the barn.";
  820.     if ( /foo(.*)bar/ ) {
  821.     print "got <$1>\n";
  822.     }
  823.  
  824. Which perhaps unexpectedly yields:
  825.  
  826.   got <d is under the bar in the >
  827.  
  828. That's because C<.*> was greedy, so you get everything between the
  829. I<first> "foo" and the I<last> "bar".  Here it's more effective
  830. to use minimal matching to make sure you get the text between a "foo"
  831. and the first "bar" thereafter.
  832.  
  833.     if ( /foo(.*?)bar/ ) { print "got <$1>\n" }
  834.   got <d is under the >
  835.  
  836. Here's another example: let's say you'd like to match a number at the end
  837. of a string, and you also want to keep the preceding part of the match.
  838. So you write this:
  839.  
  840.     $_ = "I have 2 numbers: 53147";
  841.     if ( /(.*)(\d*)/ ) {                # Wrong!
  842.     print "Beginning is <$1>, number is <$2>.\n";
  843.     }
  844.  
  845. That won't work at all, because C<.*> was greedy and gobbled up the
  846. whole string. As C<\d*> can match on an empty string the complete
  847. regular expression matched successfully.
  848.  
  849.     Beginning is <I have 2 numbers: 53147>, number is <>.
  850.  
  851. Here are some variants, most of which don't work:
  852.  
  853.     $_ = "I have 2 numbers: 53147";
  854.     @pats = qw{
  855.     (.*)(\d*)
  856.     (.*)(\d+)
  857.     (.*?)(\d*)
  858.     (.*?)(\d+)
  859.     (.*)(\d+)$
  860.     (.*?)(\d+)$
  861.     (.*)\b(\d+)$
  862.     (.*\D)(\d+)$
  863.     };
  864.  
  865.     for $pat (@pats) {
  866.     printf "%-12s ", $pat;
  867.     if ( /$pat/ ) {
  868.         print "<$1> <$2>\n";
  869.     } else {
  870.         print "FAIL\n";
  871.     }
  872.     }
  873.  
  874. That will print out:
  875.  
  876.     (.*)(\d*)    <I have 2 numbers: 53147> <>
  877.     (.*)(\d+)    <I have 2 numbers: 5314> <7>
  878.     (.*?)(\d*)   <> <>
  879.     (.*?)(\d+)   <I have > <2>
  880.     (.*)(\d+)$   <I have 2 numbers: 5314> <7>
  881.     (.*?)(\d+)$  <I have 2 numbers: > <53147>
  882.     (.*)\b(\d+)$ <I have 2 numbers: > <53147>
  883.     (.*\D)(\d+)$ <I have 2 numbers: > <53147>
  884.  
  885. As you see, this can be a bit tricky.  It's important to realize that a
  886. regular expression is merely a set of assertions that gives a definition
  887. of success.  There may be 0, 1, or several different ways that the
  888. definition might succeed against a particular string.  And if there are
  889. multiple ways it might succeed, you need to understand backtracking to
  890. know which variety of success you will achieve.
  891.  
  892. When using look-ahead assertions and negations, this can all get even
  893. trickier.  Imagine you'd like to find a sequence of non-digits not
  894. followed by "123".  You might try to write that as
  895.  
  896.     $_ = "ABC123";
  897.     if ( /^\D*(?!123)/ ) {        # Wrong!
  898.     print "Yup, no 123 in $_\n";
  899.     }
  900.  
  901. But that isn't going to match; at least, not the way you're hoping.  It
  902. claims that there is no 123 in the string.  Here's a clearer picture of
  903. why that pattern matches, contrary to popular expectations:
  904.  
  905.     $x = 'ABC123' ;
  906.     $y = 'ABC445' ;
  907.  
  908.     print "1: got $1\n" if $x =~ /^(ABC)(?!123)/ ;
  909.     print "2: got $1\n" if $y =~ /^(ABC)(?!123)/ ;
  910.  
  911.     print "3: got $1\n" if $x =~ /^(\D*)(?!123)/ ;
  912.     print "4: got $1\n" if $y =~ /^(\D*)(?!123)/ ;
  913.  
  914. This prints
  915.  
  916.     2: got ABC
  917.     3: got AB
  918.     4: got ABC
  919.  
  920. You might have expected test 3 to fail because it seems to a more
  921. general purpose version of test 1.  The important difference between
  922. them is that test 3 contains a quantifier (C<\D*>) and so can use
  923. backtracking, whereas test 1 will not.  What's happening is
  924. that you've asked "Is it true that at the start of $x, following 0 or more
  925. non-digits, you have something that's not 123?"  If the pattern matcher had
  926. let C<\D*> expand to "ABC", this would have caused the whole pattern to
  927. fail.
  928.  
  929. The search engine will initially match C<\D*> with "ABC".  Then it will
  930. try to match C<(?!123> with "123", which fails.  But because
  931. a quantifier (C<\D*>) has been used in the regular expression, the
  932. search engine can backtrack and retry the match differently
  933. in the hope of matching the complete regular expression.
  934.  
  935. The pattern really, I<really> wants to succeed, so it uses the
  936. standard pattern back-off-and-retry and lets C<\D*> expand to just "AB" this
  937. time.  Now there's indeed something following "AB" that is not
  938. "123".  It's "C123", which suffices.
  939.  
  940. We can deal with this by using both an assertion and a negation.
  941. We'll say that the first part in $1 must be followed both by a digit
  942. and by something that's not "123".  Remember that the look-aheads
  943. are zero-width expressions--they only look, but don't consume any
  944. of the string in their match.  So rewriting this way produces what
  945. you'd expect; that is, case 5 will fail, but case 6 succeeds:
  946.  
  947.     print "5: got $1\n" if $x =~ /^(\D*)(?=\d)(?!123)/ ;
  948.     print "6: got $1\n" if $y =~ /^(\D*)(?=\d)(?!123)/ ;
  949.  
  950.     6: got ABC
  951.  
  952. In other words, the two zero-width assertions next to each other work as though
  953. they're ANDed together, just as you'd use any built-in assertions:  C</^$/>
  954. matches only if you're at the beginning of the line AND the end of the
  955. line simultaneously.  The deeper underlying truth is that juxtaposition in
  956. regular expressions always means AND, except when you write an explicit OR
  957. using the vertical bar.  C</ab/> means match "a" AND (then) match "b",
  958. although the attempted matches are made at different positions because "a"
  959. is not a zero-width assertion, but a one-width assertion.
  960.  
  961. B<WARNING>: particularly complicated regular expressions can take
  962. exponential time to solve because of the immense number of possible
  963. ways they can use backtracking to try match.  For example, without
  964. internal optimizations done by the regular expression engine, this will
  965. take a painfully long time to run:
  966.  
  967.     'aaaaaaaaaaaa' =~ /((a{0,5}){0,5})*[c]/
  968.  
  969. And if you used C<*>'s in the internal groups instead of limiting them
  970. to 0 through 5 matches, then it would take forever--or until you ran
  971. out of stack space.  Moreover, these internal optimizations are not
  972. always applicable.  For example, if you put C<{0,5}> instead of C<*>
  973. on the external group, no current optimization is applicable, and the
  974. match takes a long time to finish.
  975.  
  976. A powerful tool for optimizing such beasts is what is known as an
  977. "independent group",
  978. which does not backtrack (see L<C<< (?>pattern) >>>).  Note also that
  979. zero-length look-ahead/look-behind assertions will not backtrack to make
  980. the tail match, since they are in "logical" context: only 
  981. whether they match is considered relevant.  For an example
  982. where side-effects of look-ahead I<might> have influenced the
  983. following match, see L<C<< (?>pattern) >>>.
  984.  
  985. =head2 Version 8 Regular Expressions
  986.  
  987. In case you're not familiar with the "regular" Version 8 regex
  988. routines, here are the pattern-matching rules not described above.
  989.  
  990. Any single character matches itself, unless it is a I<metacharacter>
  991. with a special meaning described here or above.  You can cause
  992. characters that normally function as metacharacters to be interpreted
  993. literally by prefixing them with a "\" (e.g., "\." matches a ".", not any
  994. character; "\\" matches a "\").  A series of characters matches that
  995. series of characters in the target string, so the pattern C<blurfl>
  996. would match "blurfl" in the target string.
  997.  
  998. You can specify a character class, by enclosing a list of characters
  999. in C<[]>, which will match any one character from the list.  If the
  1000. first character after the "[" is "^", the class matches any character not
  1001. in the list.  Within a list, the "-" character specifies a
  1002. range, so that C<a-z> represents all characters between "a" and "z",
  1003. inclusive.  If you want either "-" or "]" itself to be a member of a
  1004. class, put it at the start of the list (possibly after a "^"), or
  1005. escape it with a backslash.  "-" is also taken literally when it is
  1006. at the end of the list, just before the closing "]".  (The
  1007. following all specify the same class of three characters: C<[-az]>,
  1008. C<[az-]>, and C<[a\-z]>.  All are different from C<[a-z]>, which
  1009. specifies a class containing twenty-six characters, even on EBCDIC
  1010. based coded character sets.)  Also, if you try to use the character 
  1011. classes C<\w>, C<\W>, C<\s>, C<\S>, C<\d>, or C<\D> as endpoints of 
  1012. a range, that's not a range, the "-" is understood literally.
  1013.  
  1014. Note also that the whole range idea is rather unportable between
  1015. character sets--and even within character sets they may cause results
  1016. you probably didn't expect.  A sound principle is to use only ranges
  1017. that begin from and end at either alphabets of equal case ([a-e],
  1018. [A-E]), or digits ([0-9]).  Anything else is unsafe.  If in doubt,
  1019. spell out the character sets in full.
  1020.  
  1021. Characters may be specified using a metacharacter syntax much like that
  1022. used in C: "\n" matches a newline, "\t" a tab, "\r" a carriage return,
  1023. "\f" a form feed, etc.  More generally, \I<nnn>, where I<nnn> is a string
  1024. of octal digits, matches the character whose coded character set value 
  1025. is I<nnn>.  Similarly, \xI<nn>, where I<nn> are hexadecimal digits, 
  1026. matches the character whose numeric value is I<nn>. The expression \cI<x> 
  1027. matches the character control-I<x>.  Finally, the "." metacharacter 
  1028. matches any character except "\n" (unless you use C</s>).
  1029.  
  1030. You can specify a series of alternatives for a pattern using "|" to
  1031. separate them, so that C<fee|fie|foe> will match any of "fee", "fie",
  1032. or "foe" in the target string (as would C<f(e|i|o)e>).  The
  1033. first alternative includes everything from the last pattern delimiter
  1034. ("(", "[", or the beginning of the pattern) up to the first "|", and
  1035. the last alternative contains everything from the last "|" to the next
  1036. pattern delimiter.  That's why it's common practice to include
  1037. alternatives in parentheses: to minimize confusion about where they
  1038. start and end.
  1039.  
  1040. Alternatives are tried from left to right, so the first
  1041. alternative found for which the entire expression matches, is the one that
  1042. is chosen. This means that alternatives are not necessarily greedy. For
  1043. example: when matching C<foo|foot> against "barefoot", only the "foo"
  1044. part will match, as that is the first alternative tried, and it successfully
  1045. matches the target string. (This might not seem important, but it is
  1046. important when you are capturing matched text using parentheses.)
  1047.  
  1048. Also remember that "|" is interpreted as a literal within square brackets,
  1049. so if you write C<[fee|fie|foe]> you're really only matching C<[feio|]>.
  1050.  
  1051. Within a pattern, you may designate subpatterns for later reference
  1052. by enclosing them in parentheses, and you may refer back to the
  1053. I<n>th subpattern later in the pattern using the metacharacter
  1054. \I<n>.  Subpatterns are numbered based on the left to right order
  1055. of their opening parenthesis.  A backreference matches whatever
  1056. actually matched the subpattern in the string being examined, not
  1057. the rules for that subpattern.  Therefore, C<(0|0x)\d*\s\1\d*> will
  1058. match "0x1234 0x4321", but not "0x1234 01234", because subpattern
  1059. 1 matched "0x", even though the rule C<0|0x> could potentially match
  1060. the leading 0 in the second number.
  1061.  
  1062. =head2 Warning on \1 vs $1
  1063.  
  1064. Some people get too used to writing things like:
  1065.  
  1066.     $pattern =~ s/(\W)/\\\1/g;
  1067.  
  1068. This is grandfathered for the RHS of a substitute to avoid shocking the
  1069. B<sed> addicts, but it's a dirty habit to get into.  That's because in
  1070. PerlThink, the righthand side of an C<s///> is a double-quoted string.  C<\1> in
  1071. the usual double-quoted string means a control-A.  The customary Unix
  1072. meaning of C<\1> is kludged in for C<s///>.  However, if you get into the habit
  1073. of doing that, you get yourself into trouble if you then add an C</e>
  1074. modifier.
  1075.  
  1076.     s/(\d+)/ \1 + 1 /eg;        # causes warning under -w
  1077.  
  1078. Or if you try to do
  1079.  
  1080.     s/(\d+)/\1000/;
  1081.  
  1082. You can't disambiguate that by saying C<\{1}000>, whereas you can fix it with
  1083. C<${1}000>.  The operation of interpolation should not be confused
  1084. with the operation of matching a backreference.  Certainly they mean two
  1085. different things on the I<left> side of the C<s///>.
  1086.  
  1087. =head2 Repeated patterns matching zero-length substring
  1088.  
  1089. B<WARNING>: Difficult material (and prose) ahead.  This section needs a rewrite.
  1090.  
  1091. Regular expressions provide a terse and powerful programming language.  As
  1092. with most other power tools, power comes together with the ability
  1093. to wreak havoc.
  1094.  
  1095. A common abuse of this power stems from the ability to make infinite
  1096. loops using regular expressions, with something as innocuous as:
  1097.  
  1098.     'foo' =~ m{ ( o? )* }x;
  1099.  
  1100. The C<o?> can match at the beginning of C<'foo'>, and since the position
  1101. in the string is not moved by the match, C<o?> would match again and again
  1102. because of the C<*> modifier.  Another common way to create a similar cycle
  1103. is with the looping modifier C<//g>:
  1104.  
  1105.     @matches = ( 'foo' =~ m{ o? }xg );
  1106.  
  1107. or
  1108.  
  1109.     print "match: <$&>\n" while 'foo' =~ m{ o? }xg;
  1110.  
  1111. or the loop implied by split().
  1112.  
  1113. However, long experience has shown that many programming tasks may
  1114. be significantly simplified by using repeated subexpressions that
  1115. may match zero-length substrings.  Here's a simple example being:
  1116.  
  1117.     @chars = split //, $string;          # // is not magic in split
  1118.     ($whitewashed = $string) =~ s/()/ /g; # parens avoid magic s// /
  1119.  
  1120. Thus Perl allows such constructs, by I<forcefully breaking
  1121. the infinite loop>.  The rules for this are different for lower-level
  1122. loops given by the greedy modifiers C<*+{}>, and for higher-level
  1123. ones like the C</g> modifier or split() operator.
  1124.  
  1125. The lower-level loops are I<interrupted> (that is, the loop is
  1126. broken) when Perl detects that a repeated expression matched a
  1127. zero-length substring.   Thus
  1128.  
  1129.    m{ (?: NON_ZERO_LENGTH | ZERO_LENGTH )* }x;
  1130.  
  1131. is made equivalent to 
  1132.  
  1133.    m{   (?: NON_ZERO_LENGTH )* 
  1134.       | 
  1135.         (?: ZERO_LENGTH )? 
  1136.     }x;
  1137.  
  1138. The higher level-loops preserve an additional state between iterations:
  1139. whether the last match was zero-length.  To break the loop, the following 
  1140. match after a zero-length match is prohibited to have a length of zero.
  1141. This prohibition interacts with backtracking (see L<"Backtracking">), 
  1142. and so the I<second best> match is chosen if the I<best> match is of
  1143. zero length.
  1144.  
  1145. For example:
  1146.  
  1147.     $_ = 'bar';
  1148.     s/\w??/<$&>/g;
  1149.  
  1150. results in C<< <><b><><a><><r><> >>.  At each position of the string the best
  1151. match given by non-greedy C<??> is the zero-length match, and the I<second 
  1152. best> match is what is matched by C<\w>.  Thus zero-length matches
  1153. alternate with one-character-long matches.
  1154.  
  1155. Similarly, for repeated C<m/()/g> the second-best match is the match at the 
  1156. position one notch further in the string.
  1157.  
  1158. The additional state of being I<matched with zero-length> is associated with
  1159. the matched string, and is reset by each assignment to pos().
  1160. Zero-length matches at the end of the previous match are ignored
  1161. during C<split>.
  1162.  
  1163. =head2 Combining pieces together
  1164.  
  1165. Each of the elementary pieces of regular expressions which were described
  1166. before (such as C<ab> or C<\Z>) could match at most one substring
  1167. at the given position of the input string.  However, in a typical regular
  1168. expression these elementary pieces are combined into more complicated
  1169. patterns using combining operators C<ST>, C<S|T>, C<S*> etc
  1170. (in these examples C<S> and C<T> are regular subexpressions).
  1171.  
  1172. Such combinations can include alternatives, leading to a problem of choice:
  1173. if we match a regular expression C<a|ab> against C<"abc">, will it match
  1174. substring C<"a"> or C<"ab">?  One way to describe which substring is
  1175. actually matched is the concept of backtracking (see L<"Backtracking">).
  1176. However, this description is too low-level and makes you think
  1177. in terms of a particular implementation.
  1178.  
  1179. Another description starts with notions of "better"/"worse".  All the
  1180. substrings which may be matched by the given regular expression can be
  1181. sorted from the "best" match to the "worst" match, and it is the "best"
  1182. match which is chosen.  This substitutes the question of "what is chosen?"
  1183. by the question of "which matches are better, and which are worse?".
  1184.  
  1185. Again, for elementary pieces there is no such question, since at most
  1186. one match at a given position is possible.  This section describes the
  1187. notion of better/worse for combining operators.  In the description
  1188. below C<S> and C<T> are regular subexpressions.
  1189.  
  1190. =over 4
  1191.  
  1192. =item C<ST>
  1193.  
  1194. Consider two possible matches, C<AB> and C<A'B'>, C<A> and C<A'> are
  1195. substrings which can be matched by C<S>, C<B> and C<B'> are substrings
  1196. which can be matched by C<T>. 
  1197.  
  1198. If C<A> is better match for C<S> than C<A'>, C<AB> is a better
  1199. match than C<A'B'>.
  1200.  
  1201. If C<A> and C<A'> coincide: C<AB> is a better match than C<AB'> if
  1202. C<B> is better match for C<T> than C<B'>.
  1203.  
  1204. =item C<S|T>
  1205.  
  1206. When C<S> can match, it is a better match than when only C<T> can match.
  1207.  
  1208. Ordering of two matches for C<S> is the same as for C<S>.  Similar for
  1209. two matches for C<T>.
  1210.  
  1211. =item C<S{REPEAT_COUNT}>
  1212.  
  1213. Matches as C<SSS...S> (repeated as many times as necessary).
  1214.  
  1215. =item C<S{min,max}>
  1216.  
  1217. Matches as C<S{max}|S{max-1}|...|S{min+1}|S{min}>.
  1218.  
  1219. =item C<S{min,max}?>
  1220.  
  1221. Matches as C<S{min}|S{min+1}|...|S{max-1}|S{max}>.
  1222.  
  1223. =item C<S?>, C<S*>, C<S+>
  1224.  
  1225. Same as C<S{0,1}>, C<S{0,BIG_NUMBER}>, C<S{1,BIG_NUMBER}> respectively.
  1226.  
  1227. =item C<S??>, C<S*?>, C<S+?>
  1228.  
  1229. Same as C<S{0,1}?>, C<S{0,BIG_NUMBER}?>, C<S{1,BIG_NUMBER}?> respectively.
  1230.  
  1231. =item C<< (?>S) >>
  1232.  
  1233. Matches the best match for C<S> and only that.
  1234.  
  1235. =item C<(?=S)>, C<(?<=S)>
  1236.  
  1237. Only the best match for C<S> is considered.  (This is important only if
  1238. C<S> has capturing parentheses, and backreferences are used somewhere
  1239. else in the whole regular expression.)
  1240.  
  1241. =item C<(?!S)>, C<(?<!S)>
  1242.  
  1243. For this grouping operator there is no need to describe the ordering, since
  1244. only whether or not C<S> can match is important.
  1245.  
  1246. =item C<(??{ EXPR })>
  1247.  
  1248. The ordering is the same as for the regular expression which is
  1249. the result of EXPR.
  1250.  
  1251. =item C<(?(condition)yes-pattern|no-pattern)>
  1252.  
  1253. Recall that which of C<yes-pattern> or C<no-pattern> actually matches is
  1254. already determined.  The ordering of the matches is the same as for the
  1255. chosen subexpression.
  1256.  
  1257. =back
  1258.  
  1259. The above recipes describe the ordering of matches I<at a given position>.
  1260. One more rule is needed to understand how a match is determined for the
  1261. whole regular expression: a match at an earlier position is always better
  1262. than a match at a later position.
  1263.  
  1264. =head2 Creating custom RE engines
  1265.  
  1266. Overloaded constants (see L<overload>) provide a simple way to extend
  1267. the functionality of the RE engine.
  1268.  
  1269. Suppose that we want to enable a new RE escape-sequence C<\Y|> which
  1270. matches at boundary between white-space characters and non-whitespace
  1271. characters.  Note that C<(?=\S)(?<!\S)|(?!\S)(?<=\S)> matches exactly
  1272. at these positions, so we want to have each C<\Y|> in the place of the
  1273. more complicated version.  We can create a module C<customre> to do
  1274. this:
  1275.  
  1276.     package customre;
  1277.     use overload;
  1278.  
  1279.     sub import {
  1280.       shift;
  1281.       die "No argument to customre::import allowed" if @_;
  1282.       overload::constant 'qr' => \&convert;
  1283.     }
  1284.  
  1285.     sub invalid { die "/$_[0]/: invalid escape '\\$_[1]'"}
  1286.  
  1287.     my %rules = ( '\\' => '\\', 
  1288.           'Y|' => qr/(?=\S)(?<!\S)|(?!\S)(?<=\S)/ );
  1289.     sub convert {
  1290.       my $re = shift;
  1291.       $re =~ s{ 
  1292.                 \\ ( \\ | Y . )
  1293.               }
  1294.               { $rules{$1} or invalid($re,$1) }sgex; 
  1295.       return $re;
  1296.     }
  1297.  
  1298. Now C<use customre> enables the new escape in constant regular
  1299. expressions, i.e., those without any runtime variable interpolations.
  1300. As documented in L<overload>, this conversion will work only over
  1301. literal parts of regular expressions.  For C<\Y|$re\Y|> the variable
  1302. part of this regular expression needs to be converted explicitly
  1303. (but only if the special meaning of C<\Y|> should be enabled inside $re):
  1304.  
  1305.     use customre;
  1306.     $re = <>;
  1307.     chomp $re;
  1308.     $re = customre::convert $re;
  1309.     /\Y|$re\Y|/;
  1310.  
  1311. =head1 BUGS
  1312.  
  1313. This document varies from difficult to understand to completely
  1314. and utterly opaque.  The wandering prose riddled with jargon is
  1315. hard to fathom in several places.
  1316.  
  1317. This document needs a rewrite that separates the tutorial content
  1318. from the reference content.
  1319.  
  1320. =head1 SEE ALSO
  1321.  
  1322. L<perlrequick>.
  1323.  
  1324. L<perlretut>.
  1325.  
  1326. L<perlop/"Regexp Quote-Like Operators">.
  1327.  
  1328. L<perlop/"Gory details of parsing quoted constructs">.
  1329.  
  1330. L<perlfaq6>.
  1331.  
  1332. L<perlfunc/pos>.
  1333.  
  1334. L<perllocale>.
  1335.  
  1336. L<perlebcdic>.
  1337.  
  1338. I<Mastering Regular Expressions> by Jeffrey Friedl, published
  1339. by O'Reilly and Associates.
  1340.