X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlfaq6.pod;h=168233bd1b569c5f29ee8f91246e312f83212834;hb=0dfdcd8a63a82bd61087d84a6f130e03a4b20ed9;hp=7c9fa6a20265285b99aaf25de0f2ccedd254e3a4;hpb=d1be9408a3c14848d30728674452e191ba5fffaa;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlfaq6.pod b/pod/perlfaq6.pod index 7c9fa6a..168233b 100644 --- a/pod/perlfaq6.pod +++ b/pod/perlfaq6.pod @@ -1,6 +1,6 @@ =head1 NAME -perlfaq6 - Regexes ($Revision: 1.4 $, $Date: 2001/11/09 08:06:04 $) +perlfaq6 - Regular Expressions ($Revision: 1.20 $, $Date: 2003/01/03 20:05:28 $) =head1 DESCRIPTION @@ -8,8 +8,8 @@ This section is surprisingly small because the rest of the FAQ is littered with answers involving regular expressions. For example, decoding a URL and checking whether something is a number are handled with regular expressions, but those answers are found elsewhere in -this document (in L: ``How do I decode or create those %-encodings -on the web'' and L: ``How do I determine whether a scalar is +this document (in L: ``How do I decode or create those %-encodings +on the web'' and L: ``How do I determine whether a scalar is a number/whole/integer/float'', to be precise). =head2 How can I hope to use regular expressions without creating illegible and unmaintainable code? @@ -70,9 +70,9 @@ delimiter within the pattern: =head2 I'm having trouble matching over more than one line. What's wrong? -Either you don't have more than one line in the string you're looking at -(probably), or else you aren't using the correct modifier(s) on your -pattern (possibly). +Either you don't have more than one line in the string you're looking +at (probably), or else you aren't using the correct modifier(s) on +your pattern (possibly). There are many ways to get multiline data into a string. If you want it to happen automatically while reading input, you'll want to set $/ @@ -143,38 +143,38 @@ Here's another example of using C<..>: # now choose between them } continue { reset if eof(); # fix $. - } + } =head2 I put a regular expression into $/ but it didn't work. What's wrong? -$/ must be a string, not a regular expression. Awk has to be better -for something. :-) - -Actually, you could do this if you don't mind reading the whole file -into memory: +Up to Perl 5.8.0, $/ has to be a string. This may change in 5.10, +but don't get your hopes up. Until then, you can use these examples +if you really need to do this. - undef $/; - @records = split /your_pattern/, ; +Use the four argument form of sysread to continually add to +a buffer. After you add to the buffer, you check if you have a +complete line (using your regular expression). -The Net::Telnet module (available from CPAN) has the capability to -wait for a pattern in the input stream, or timeout if it doesn't -appear within a certain time. + local $_ = ""; + while( sysread FH, $_, 8192, length ) { + while( s/^((?s).*?)your_pattern/ ) { + my $record = $1; + # do stuff here. + } + } - ## Create a file with three lines. - open FH, ">file"; - print FH "The first line\nThe second line\nThe third line\n"; - close FH; + You can do the same thing with foreach and a match using the + c flag and the \G anchor, if you do not mind your entire file + being in memory at the end. - ## Get a read/write filehandle to it. - $fh = new FileHandle "+ $fh); - - ## Search for the second line and print out the third. - $file->waitfor('/second line\n/'); - print $file->getline; =head2 How do I substitute case insensitively on the LHS while preserving case on the RHS? @@ -201,7 +201,7 @@ And here it is as a subroutine, modeled after the above: my $mask = uc $old ^ $old; uc $new | $mask . - substr($mask, -1) x (length($new) - length($old)) + substr($mask, -1) x (length($new) - length($old)) } $a = "this is a TEsT case"; @@ -218,10 +218,10 @@ longer than the original, you can use this code, by Jeff Pinyan: sub preserve_case { my ($from, $to) = @_; my ($lf, $lt) = map length, @_; - + if ($lt < $lf) { $from = substr $from, 0, $lt } else { $from .= substr $to, $lf } - + return uc $to | ($from ^ uc $from); } @@ -267,31 +267,51 @@ the case of the last character is used for the rest of the substitution. =head2 How can I make C<\w> match national character sets? -See L. +Put C in your script. The \w character class is taken +from the current locale. + +See L for details. =head2 How can I match a locale-smart version of C? -One alphabetic character would be C, no matter what locale -you're in. Non-alphabetics would be C (assuming you don't -consider an underscore a letter). +You can use the POSIX character class syntax C +documented in L. + +No matter which locale you are in, the alphabetic characters are +the characters in \w without the digits and the underscore. +As a regex, that looks like C. Its complement, +the non-alphabetics, is then everything in \W along with +the digits and the underscore, or C. =head2 How can I quote a variable to use in a regex? The Perl parser will expand $variable and @variable references in regular expressions unless the delimiter is a single quote. Remember, -too, that the right-hand side of an C substitution is considered +too, that the right-hand side of a C substitution is considered a double-quoted string (see L for more details). Remember also that any regex special characters will be acted on unless you precede the substitution with \Q. Here's an example: - $string = "to die?"; - $lhs = "die?"; - $rhs = "sleep, no more"; + $string = "Placido P. Octopus"; + $regex = "P."; + + $string =~ s/$regex/Polyp/; + # $string is now "Polypacido P. Octopus" - $string =~ s/\Q$lhs/$rhs/; - # $string is now "to sleep no more" +Because C<.> is special in regular expressions, and can match any +single character, the regex C here has matched the in the +original string. -Without the \Q, the regex would also spuriously match "di". +To escape the special meaning of C<.>, we use C<\Q>: + + $string = "Placido P. Octopus"; + $regex = "P."; + + $string =~ s/\Q$regex/Polyp/; + # $string is now "Placido Polyp Octopus" + +The use of C<\Q> causes the <.> in the regex to be treated as a +regular character, so that C matches a C

followed by a dot. =head2 What is C really for? @@ -434,9 +454,9 @@ playing hot potato. Use the split function: while (<>) { - foreach $word ( split ) { + foreach $word ( split ) { # do something with $word here - } + } } Note that this isn't really a word in the English sense; it's just @@ -470,7 +490,7 @@ in the previous question: If you wanted to do the same thing for lines, you wouldn't need a regular expression: - while (<>) { + while (<>) { $seen{$_}++; } while ( ($line, $count) = each %seen ) { @@ -492,12 +512,12 @@ The following is extremely inefficient: @popstates = qw(CO ON MI WI MN); while (defined($line = <>)) { for $state (@popstates) { - if ($line =~ /\b$state\b/i) { + if ($line =~ /\b$state\b/i) { print $line; last; } } - } + } That's because Perl has to recompile all those patterns for each of the lines of the file. As of the 5.005 release, there's a much better @@ -555,69 +575,96 @@ variable is no longer "expensive" the way the other two are. =head2 What good is C<\G> in a regular expression? -The notation C<\G> is used in a match or substitution in conjunction with -the C modifier to anchor the regular expression to the point just past -where the last match occurred, i.e. the pos() point. A failed match resets -the position of C<\G> unless the C modifier is in effect. C<\G> can be -used in a match without the C modifier; it acts the same (i.e. still -anchors at the pos() point) but of course only matches once and does not -update pos(), as non-C expressions never do. C<\G> in an expression -applied to a target string that has never been matched against a C -expression before or has had its pos() reset is functionally equivalent to -C<\A>, which matches at the beginning of the string. - -For example, suppose you had a line of text quoted in standard mail -and Usenet notation, (that is, with leading C<< > >> characters), and -you want change each leading C<< > >> into a corresponding C<:>. You -could do so in this way: - - s/^(>+)/':' x length($1)/gem; - -Or, using C<\G>, the much simpler (and faster): - - s/\G>/:/g; - -A more sophisticated use might involve a tokenizer. The following -lex-like example is courtesy of Jeffrey Friedl. It did not work in -5.003 due to bugs in that release, but does work in 5.004 or better. -(Note the use of C, which prevents a failed match with C from -resetting the search position back to the beginning of the string.) +You use the C<\G> anchor to start the next match on the same +string where the last match left off. The regular +expression engine cannot skip over any characters to find +the next match with this anchor, so C<\G> is similar to the +beginning of string anchor, C<^>. The C<\G> anchor is typically +used with the C flag. It uses the value of pos() +as the position to start the next match. As the match +operator makes successive matches, it updates pos() with the +position of the next character past the last match (or the +first character of the next match, depending on how you like +to look at it). Each string has its own pos() value. + +Suppose you want to match all of consective pairs of digits +in a string like "1122a44" and stop matching when you +encounter non-digits. You want to match C<11> and C<22> but +the letter shows up between C<22> and C<44> and you want +to stop at C. Simply matching pairs of digits skips over +the C and still matches C<44>. + + $_ = "1122a44"; + my @pairs = m/(\d\d)/g; # qw( 11 22 44 ) + +If you use the \G anchor, you force the match after C<22> to +start with the C. The regular expression cannot match +there since it does not find a digit, so the next match +fails and the match operator returns the pairs it already +found. + + $_ = "1122a44"; + my @pairs = m/\G(\d\d)/g; # qw( 11 22 ) + +You can also use the C<\G> anchor in scalar context. You +still need the C flag. + + $_ = "1122a44"; + while( m/\G(\d\d)/g ) + { + print "Found $1\n"; + } + +After the match fails at the letter C, perl resets pos() +and the next match on the same string starts at the beginning. + + $_ = "1122a44"; + while( m/\G(\d\d)/g ) + { + print "Found $1\n"; + } + + print "Found $1 after while" if m/(\d\d)/g; # finds "11" + +You can disable pos() resets on fail with the C flag. +Subsequent matches start where the last successful match +ended (the value of pos()) even if a match on the same +string as failed in the meantime. In this case, the match +after the while() loop starts at the C (where the last +match stopped), and since it does not use any anchor it can +skip over the C to find "44". + + $_ = "1122a44"; + while( m/\G(\d\d)/gc ) + { + print "Found $1\n"; + } + + print "Found $1 after while" if m/(\d\d)/g; # finds "44" + +Typically you use the C<\G> anchor with the C flag +when you want to try a different match if one fails, +such as in a tokenizer. Jeffrey Friedl offers this example +which works in 5.004 or later. while (<>) { chomp; PARSER: { - m/ \G( \d+\b )/gcx && do { print "number: $1\n"; redo; }; - m/ \G( \w+ )/gcx && do { print "word: $1\n"; redo; }; - m/ \G( \s+ )/gcx && do { print "space: $1\n"; redo; }; - m/ \G( [^\w\d]+ )/gcx && do { print "other: $1\n"; redo; }; + m/ \G( \d+\b )/gcx && do { print "number: $1\n"; redo; }; + m/ \G( \w+ )/gcx && do { print "word: $1\n"; redo; }; + m/ \G( \s+ )/gcx && do { print "space: $1\n"; redo; }; + m/ \G( [^\w\d]+ )/gcx && do { print "other: $1\n"; redo; }; } } -Of course, that could have been written as - - while (<>) { - chomp; - PARSER: { - if ( /\G( \d+\b )/gcx { - print "number: $1\n"; - redo PARSER; - } - if ( /\G( \w+ )/gcx { - print "word: $1\n"; - redo PARSER; - } - if ( /\G( \s+ )/gcx { - print "space: $1\n"; - redo PARSER; - } - if ( /\G( [^\w\d]+ )/gcx { - print "other: $1\n"; - redo PARSER; - } - } - } - -but then you lose the vertical alignment of the regular expressions. +For each line, the PARSER loop first tries to match a series +of digits followed by a word boundary. This match has to +start at the place the last match left off (or the beginning +of the string on the first match). Since C uses the C flag, if the string does not match that +regular expression, perl does not reset pos() and the next +match starts at the same position to try a different +pattern. =head2 Are Perl regexes DFAs or NFAs? Are they POSIX compliant? @@ -632,20 +679,34 @@ guaranteed is slowness.) See the book "Mastering Regular Expressions" hope to know on these matters (a full citation appears in L). -=head2 What's wrong with using grep or map in a void context? +=head2 What's wrong with using grep in a void context? -Both grep and map build a return list, regardless of their context. -This means you're making Perl go to the trouble of building up a -return list that you then just ignore. That's no way to treat a -programming language, you insensitive scoundrel! +The problem is that grep builds a return list, regardless of the context. +This means you're making Perl go to the trouble of building a list that +you then just throw away. If the list is large, you waste both time and space. +If your intent is to iterate over the list, then use a for loop for this +purpose. + +In perls older than 5.8.1, map suffers from this problem as well. +But since 5.8.1, this has been fixed, and map is context aware - in void +context, no lists are constructed. =head2 How can I match strings with multibyte characters? -This is hard, and there's no good way. Perl does not directly support -wide characters. It pretends that a byte and a character are -synonymous. The following set of approaches was offered by Jeffrey -Friedl, whose article in issue #5 of The Perl Journal talks about this -very matter. +Starting from Perl 5.6 Perl has had some level of multibyte character +support. Perl 5.8 or later is recommended. Supported multibyte +character repertoires include Unicode, and legacy encodings +through the Encode module. See L, L, +and L. + +If you are stuck with older Perls, you can do Unicode with the +C module, and character conversions using the +C and C modules. If you are using +Japanese encodings, you might try using the jperl 5.005_03. + +Finally, the following set of approaches was offered by Jeffrey +Friedl, whose article in issue #5 of The Perl Journal talks about +this very matter. Let's suppose you have some weird Martian encoding where pairs of ASCII uppercase letters encode single Martian letters (i.e. the two @@ -664,8 +725,8 @@ looks like it is because "SG" is next to "XX", but there's no real Here are a few ways, all painful, to deal with it: - $martian =~ s/([A-Z][A-Z])/ $1 /g; # Make sure adjacent ``martian'' bytes - # are no longer adjacent. + $martian =~ s/([A-Z][A-Z])/ $1 /g; # Make sure adjacent ``martian'' + # bytes are no longer adjacent. print "found GX!\n" if $martian =~ /GX/; Or like this: @@ -683,13 +744,21 @@ Or like this: print "found GX!\n", last if $1 eq 'GX'; } -Or like this: +Here's another, slightly less painful, way to do it from Benjamin +Goldberg: + + $martian =~ m/ + (?!<[A-Z]) + (?:[A-Z][A-Z])*? + GX + /x; - die "sorry, Perl doesn't (yet) have Martian support )-:\n"; +This succeeds if the "martian" character GX is in the string, and fails +otherwise. If you don't like using (?!<), you can replace (?!<[A-Z]) +with (?:^|[^A-Z]). -There are many double- (and multi-) byte encodings commonly used these -days. Some versions of these have 1-, 2-, 3-, and 4-byte characters, -all mixed. +It does have the drawback of putting the wrong thing in $-[0] and $+[0], +but this usually can be worked around. =head2 How do I match a pattern that is supplied by the user? @@ -719,7 +788,7 @@ in L. =head1 AUTHOR AND COPYRIGHT -Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington. +Copyright (c) 1997-2002 Tom Christiansen and Nathan Torkington. All rights reserved. This documentation is free; you can redistribute it and/or modify it