Perl 简明教程
Perl - Regular Expressions
A regular expression is a string of characters that defines the pattern or patterns you are viewing. The syntax of regular expressions in Perl is very similar to what you will find within other regular expression.supporting programs, such as sed, grep, and awk.
The basic method for applying a regular expression is to use the pattern binding operators =~ and !~. The first operator is a test and assignment operator.
There are three regular expression operators within Perl.
-
Match Regular Expression - m//
-
Substitute Regular Expression - s///
-
Transliterate Regular Expression - tr///
The forward slashes in each case act as delimiters for the regular expression (regex) that you are specifying. If you are comfortable with any other delimiter, then you can use in place of forward slash.
The Match Operator
The match operator, m//, is used to match a string or statement to a regular expression. For example, to match the character sequence "foo" against the scalar $bar, you might use a statement like this −
#!/usr/bin/perl
$bar = "This is foo and again foo";
if ($bar =~ /foo/) {
print "First time is matching\n";
} else {
print "First time is not matching\n";
}
$bar = "foo";
if ($bar =~ /foo/) {
print "Second time is matching\n";
} else {
print "Second time is not matching\n";
}
當以上程式執行時,會產生以下結果 −
First time is matching
Second time is matching
The m// actually works in the same fashion as the q// operator series.you can use any combination of naturally matching characters to act as delimiters for the expression. For example, m{}, m(), and m>< are all valid. So above example can be re-written as follows −
#!/usr/bin/perl
$bar = "This is foo and again foo";
if ($bar =~ m[foo]) {
print "First time is matching\n";
} else {
print "First time is not matching\n";
}
$bar = "foo";
if ($bar =~ m{foo}) {
print "Second time is matching\n";
} else {
print "Second time is not matching\n";
}
You can omit m from m// if the delimiters are forward slashes, but for all other delimiters you must use the m prefix.
Note that the entire match expression, that is the expression on the left of =~ or !~ and the match operator, returns true (in a scalar context) if the expression matches. Therefore the statement −
$true = ($foo =~ m/foo/);
will set $true to 1 if $foo matches the regex, or 0 if the match fails. In a list context, the match returns the contents of any grouped expressions. For example, when extracting the hours, minutes, and seconds from a time string, we can use −
my ($hours, $minutes, $seconds) = ($time =~ m/(\d+):(\d+):(\d+)/);
Match Operator Modifiers
The match operator supports its own set of modifiers. The /g modifier allows for global matching. The /i modifier will make the match case insensitive. Here is the complete list of modifiers
Sr.No. |
Modifier & Description |
1 |
i Makes the match case insensitive. |
2 |
m Specifies that if the string has newline or carriage return characters, the ^ and $ operators will now match against a newline boundary, instead of a string boundary. |
3 |
o Evaluates the expression only once. |
4 |
s Allows use of . to match a newline character. |
5 |
x Allows you to use white space in the expression for clarity. |
6 |
g Globally finds all matches. |
7 |
cg Allows the search to continue even after a global match fails. |
Matching Only Once
There is also a simpler version of the match operator - the ?PATTERN? operator. This is basically identical to the m// operator except that it only matches once within the string you are searching between each call to reset.
For example, you can use this to get the first and last elements within a list −
#!/usr/bin/perl
@list = qw/food foosball subeo footnote terfoot canic footbrdige/;
foreach (@list) {
$first = $1 if /(foo.*?)/;
$last = $1 if /(foo.*)/;
}
print "First: $first, Last: $last\n";
當以上程式執行時,會產生以下結果 −
First: foo, Last: footbrdige
Regular Expression Variables
Regular expression variables include $, which contains whatever the last grouping match matched; $&, which contains the entire matched string; $`, which contains everything before the matched string; and $', which contains everything after the matched string. Following code demonstrates the result −
#!/usr/bin/perl
$string = "The food is in the salad bar";
$string =~ m/foo/;
print "Before: $`\n";
print "Matched: $&\n";
print "After: $'\n";
當以上程式執行時,會產生以下結果 −
Before: The
Matched: foo
After: d is in the salad bar
The Substitution Operator
The substitution operator, s///, is really just an extension of the match operator that allows you to replace the text matched with some new text. The basic form of the operator is −
s/PATTERN/REPLACEMENT/;
The PATTERN is the regular expression for the text that we are looking for. The REPLACEMENT is a specification for the text or regular expression that we want to use to replace the found text with. For example, we can replace all occurrences of dog with cat using the following regular expression −
#/user/bin/perl
$string = "The cat sat on the mat";
$string =~ s/cat/dog/;
print "$string\n";
當以上程式執行時,會產生以下結果 −
The dog sat on the mat
Substitution Operator Modifiers
Here is the list of all the modifiers used with substitution operator.
Sr.No. |
Modifier & Description |
1 |
i Makes the match case insensitive. |
2 |
m Specifies that if the string has newline or carriage return characters, the ^ and $ operators will now match against a newline boundary, instead of a string boundary. |
3 |
o Evaluates the expression only once. |
4 |
s Allows use of . to match a newline character. |
5 |
x Allows you to use white space in the expression for clarity. |
6 |
g Replaces all occurrences of the found expression with the replacement text. |
7 |
e Evaluates the replacement as if it were a Perl statement, and uses its return value as the replacement text. |
The Translation Operator
Translation is similar, but not identical, to the principles of substitution, but unlike substitution, translation (or transliteration) does not use regular expressions for its search on replacement values. The translation operators are −
tr/SEARCHLIST/REPLACEMENTLIST/cds
y/SEARCHLIST/REPLACEMENTLIST/cds
The translation replaces all occurrences of the characters in SEARCHLIST with the corresponding characters in REPLACEMENTLIST. For example, using the "The cat sat on the mat." string we have been using in this chapter −
#/user/bin/perl
$string = 'The cat sat on the mat';
$string =~ tr/a/o/;
print "$string\n";
當以上程式執行時,會產生以下結果 −
The cot sot on the mot.
Standard Perl ranges can also be used, allowing you to specify ranges of characters either by letter or numerical value. To change the case of the string, you might use the following syntax in place of the uc function.
$string =~ tr/a-z/A-Z/;
Translation Operator Modifiers
Following is the list of operators related to translation.
Sr.No. |
Modifier & Description |
1 |
c Complements SEARCHLIST. |
2 |
d Deletes found but unreplaced characters. |
3 |
s Squashes duplicate replaced characters. |
The /d modifier deletes the characters matching SEARCHLIST that do not have a corresponding entry in REPLACEMENTLIST. For example −
#!/usr/bin/perl
$string = 'the cat sat on the mat.';
$string =~ tr/a-z/b/d;
print "$string\n";
當以上程式執行時,會產生以下結果 −
b b b.
The last modifier, /s, removes the duplicate sequences of characters that were replaced, so −
#!/usr/bin/perl
$string = 'food';
$string = 'food';
$string =~ tr/a-z/a-z/s;
print "$string\n";
當以上程式執行時,會產生以下結果 −
fod
More Complex Regular Expressions
You don’t just have to match on fixed strings. In fact, you can match on just about anything you could dream of by using more complex regular expressions. Here’s a quick cheat sheet −
Following table lists the regular expression syntax that is available in Python.
Sr.No. |
Pattern & Description |
1 |
^ Matches beginning of line. |
2 |
$ Matches end of line. |
3 |
. 匹配除换行符以外的任何单个字符。使用 m 选项允许它也匹配换行符。 |
4 |
[…​] 匹配方括号中的任何单个字符。 |
5 |
[^…] Matches any single character not in brackets. |
6 |
* Matches 0 or more occurrences of preceding expression. |
7 |
+ Matches 1 or more occurrence of preceding expression. |
8 |
? Matches 0 or 1 occurrence of preceding expression. |
9 |
{ n} Matches exactly n number of occurrences of preceding expression. |
10 |
{ n,} Matches n or more occurrences of preceding expression. |
11 |
{ n, m} Matches at least n and at most m occurrences of preceding expression. |
12 |
*a |
{b}匹配 a 或 b。 |
13 |
\w Matches word characters. |
14 |
\W Matches nonword characters. |
15 |
\s 匹配空格。等效于 [\t\n\r\f]。 |
16 |
\S Matches nonwhitespace. |
17 |
\d 匹配数字。等效于 [0-9]。 |
18 |
\D Matches nondigits. |
19 |
\A Matches beginning of string. |
20 |
\Z 匹配字符串的结尾。如果存在换行符,则匹配在换行符前。 |
21 |
\z Matches end of string. |
22 |
\G 匹配上次匹配结束的位置。 |
23 |
\b 当不在括号中时,匹配单词边界。当在括号中时,匹配退格符(0x08)。 |
24 |
\B Matches nonword boundaries. |
25 |
\n, \t, etc. 匹配换行符、回车符、制表符等。 |
26 |
\1…\9 Matches nth grouped subexpression. |
27 |
\10 Matches nth grouped subexpression if it matched already. Otherwise refers to the octal representation of a character code. |
28 |
[aeiou] Matches a single character in the given set |
29 |
The ^ metacharacter matches the beginning of the string and the $ metasymbol matches the end of the string. Here are some brief examples.
# nothing in the string (start and end are adjacent)
/^$/
# a three digits, each followed by a whitespace
# character (eg "3 4 5 ")
/(\d\s) {3}/
# matches a string in which every
# odd-numbered letter is a (eg "abacadaf")
/(a.)+/
# string starts with one or more digits
/^\d+/
# string that ends with one or more digits
/\d+$/
Lets have a look at another example.
#!/usr/bin/perl
$string = "Cats go Catatonic\nWhen given Catnip";
($start) = ($string =~ /\A(.*?) /);
@lines = $string =~ /^(.*?) /gm;
print "First word: $start\n","Line starts: @lines\n";
當以上程式執行時,會產生以下結果 −
First word: Cats
Line starts: Cats When
Matching Boundaries
The \b matches at any word boundary, as defined by the difference between the \w class and the \W class. Because \w includes the characters for a word, and \W the opposite, this normally means the termination of a word. The \B assertion matches any position that is not a word boundary. For example −
/\bcat\b/ # Matches 'the cat sat' but not 'cat on the mat'
/\Bcat\B/ # Matches 'verification' but not 'the cat on the mat'
/\bcat\B/ # Matches 'catatonic' but not 'polecat'
/\Bcat\b/ # Matches 'polecat' but not 'catatonic'
Selecting Alternatives
The | character is just like the standard or bitwise OR within Perl. It specifies alternate matches within a regular expression or group. For example, to match "cat" or "dog" in an expression, you might use this −
if ($string =~ /cat|dog/)
You can group individual elements of an expression together in order to support complex matches. Searching for two people’s names could be achieved with two separate tests, like this −
if (($string =~ /Martin Brown/) || ($string =~ /Sharon Brown/))
This could be written as follows
if ($string =~ /(Martin|Sharon) Brown/)
Grouping Matching
From a regular-expression point of view, there is no difference between except, perhaps, that the former is slightly clearer.
$string =~ /(\S+)\s+(\S+)/;
and
$string =~ /\S+\s+\S+/;
However, the benefit of grouping is that it allows us to extract a sequence from a regular expression. Groupings are returned as a list in the order in which they appear in the original. For example, in the following fragment we have pulled out the hours, minutes, and seconds from a string.
my ($hours, $minutes, $seconds) = ($time =~ m/(\d+):(\d+):(\d+)/);
As well as this direct method, matched groups are also available within the special $x variables, where x is the number of the group within the regular expression. We could therefore rewrite the preceding example as follows −
#!/usr/bin/perl
$time = "12:05:30";
$time =~ m/(\d+):(\d+):(\d+)/;
my ($hours, $minutes, $seconds) = ($1, $2, $3);
print "Hours : $hours, Minutes: $minutes, Second: $seconds\n";
當以上程式執行時,會產生以下結果 −
Hours : 12, Minutes: 05, Second: 30
When groups are used in substitution expressions, the $x syntax can be used in the replacement text. Thus, we could reformat a date string using this −
#!/usr/bin/perl
$date = '03/26/1999';
$date =~ s#(\d+)/(\d+)/(\d+)#$3/$1/$2#;
print "$date\n";
當以上程式執行時,會產生以下結果 −
1999/03/26
The \G Assertion
The \G assertion allows you to continue searching from the point where the last match occurred. For example, in the following code, we have used \G so that we can search to the correct position and then extract some information, without having to create a more complex, single regular expression −
#!/usr/bin/perl
$string = "The time is: 12:31:02 on 4/12/00";
$string =~ /:\s+/g;
($time) = ($string =~ /\G(\d+:\d+:\d+)/);
$string =~ /.+\s+/g;
($date) = ($string =~ m{\G(\d+/\d+/\d+)});
print "Time: $time, Date: $date\n";
當以上程式執行時,會產生以下結果 −
Time: 12:31:02, Date: 4/12/00
The \G assertion is actually just the metasymbol equivalent of the pos function, so between regular expression calls you can continue to use pos, and even modify the value of pos (and therefore \G) by using pos as an lvalue subroutine.
Regular-expression Examples
Character Classes
Sr.No. |
Example & Description |
1 |
[Pp]ython Matches "Python" or "python" |
2 |
rub[ye] Matches "ruby" or "rube" |
3 |
[aeiou] Matches any one lowercase vowel |
4 |
[0-9] Matches any digit; same as [0123456789] |
5 |
[a-z] Matches any lowercase ASCII letter |
6 |
[A-Z] Matches any uppercase ASCII letter |
7 |
[a-zA-Z0-9] Matches any of the above |
8 |
[^aeiou] Matches anything other than a lowercase vowel |
9 |
[^0-9] Matches anything other than a digit |
Special Character Classes
Sr.No. |
Example & Description |
1 |
. Matches any character except newline |
2 |
\d Matches a digit: [0-9] |
3 |
\D Matches a nondigit: [^0-9] |
4 |
\s Matches a whitespace character: [ \t\r\n\f] |
5 |
\S Matches nonwhitespace: [^ \t\r\n\f] |
6 |
\w Matches a single word character: [A-Za-z0-9_] |
7 |
\W Matches a nonword character: [^A-Za-z0-9_] |
Repetition Cases
Sr.No. |
Example & Description |
1 |
ruby? Matches "rub" or "ruby": the y is optional |
2 |
ruby* Matches "rub" plus 0 or more ys |
3 |
ruby+ Matches "rub" plus 1 or more ys |
4 |
\d{3} Matches exactly 3 digits |
5 |
\d{3,} Matches 3 or more digits |
6. |
\d{3,5} Matches 3, 4, or 5 digits |
Nongreedy Repetition
这匹配最少重复数量−
Sr.No. |
Example & Description |
1 |
<.>* Greedy repetition: matches "<python>perl>" |
2 |
<. ?*Nongreedy: 在 "<python>perl>" 中匹配 "<python>" |
Grouping with Parentheses
Sr.No. |
Example & Description |
1 |
\D\d+ No group: + 重复\d |
2 |
(\D\d)+ 分组: + 重复\ D\d 对 |
3 |
([Pp]ython(, )?)+ 匹配 "Python", "Python, python, python" 等 |
Backreferences
这再次匹配先前的匹配组——
Sr.No. |
Example & Description |
1 |
([Pp])ython&\1ails Matches python&pails or Python&Pails |
2 |
(['"])[^\1] \1*单引号或双引号字符串。\1 匹配第 1 个组匹配的内容。\2 匹配第 2 个组匹配的内容,依此类推。 |
Alternatives
Sr.No. |
Example & Description |
1 |
*python |
perl* Matches "python" or "perl" |
2 |
*rub(y |
le))* Matches "ruby" or "ruble" |
3 |
*Python(!+ |
Anchors
This need to specify match positions.
Sr.No. |
Example & Description |
1 |
^Python Matches "Python" at the start of a string or internal line |
2 |
Python$ Matches "Python" at the end of a string or line |
3 |
\APython Matches "Python" at the start of a string |
4 |
Python\Z Matches "Python" at the end of a string |
5 |
\bPython\b Matches "Python" at a word boundary |
6 |
\brub\B \B是非单词边界:匹配 "rube" 和 "ruby" 中的 "rub",但不单独匹配 |
7 |
Python(?=!) Matches "Python", if followed by an exclamation point |
8 |
Python(?!!) Matches "Python", if not followed by an exclamation point |