Learning Perl學(xué)習(xí)筆記(7)第八章 使用正則表達(dá)式進(jìn)行matching

第一題

Using the pattern test program, make a pattern to match the string match. Try
the program with the input string beforematchafter. Does the output show the
three parts of the match in the right order?

腳本:

#!/usr/bin/perl
use warnings;
use strict;
use v5.24;

my $string_word = "beforematchafter";
if ($string_word =~ m/(match)/) {
        print "Matched: |$`<$&>$'|\n"; #分別代表匹配前面的部分更米,完全匹配的部分宾尚,以及匹配部分后面的字符串
} else {
        print "No match: |$_|\n";
}

運(yùn)行:

$ ./practice1.pl
Matched: |before<match>after|

第二題:

Using the pattern test program, make a pattern that matches if any word (in
the \w sense of word) ends with the letter a. Does it match wilma but not barney?
Does it match Mrs. Wilma Flintstone? What about wilma&fred?

腳本:

#!/usr/bin/perl
use warnings;
use strict;
use v5.24;

while(<>){
        chomp;
        if (m/\wa\b/){ #這里的\w代表匹配word,a\b代表匹配以a為字符邊界的字符串
                print "Matched: |$`<$&>$'|\n";
        }else{
                print "No match: |$_|\n";
        }
}

小文本:

$ cat text1.txt
fred
wilma
barney
Alfred
fred and wilma
Mrs. Wilma Flintstone
wilma&fred

運(yùn)行:

$ ./practice1.pl text1.txt
No match: |fred|
Matched: |wil<ma>|
No match: |barney|
No match: |Alfred|
Matched: |fred and wil<ma>|
Matched: |Mrs. Wil<ma> Flintstone|
Matched: |wil<ma>&fred|

第三題

Modify the program from the previous exercise so that the word ending with
the letter a is captured into $1. Update the code to display that variable’s contents in single quotes, something like $1 contains 'Wilma'.

腳本:

#!/usr/bin/perl
use warnings;
use strict;
use v5.24;

while(<>){
        chomp;
        if (m/(\b\w*a\b)/){
                print "Matched: \$1 contains '$1';\n";
        }else{
                print "No match: |$_|\n";
        }
}

運(yùn)行:

$ ./practice1.pl text1.txt
No match: |fred|
Matched: $1 contains 'wilma';
No match: |barney|
No match: |Alfred|
Matched: $1 contains 'wilma';
Matched: $1 contains 'Wilma';
Matched: $1 contains 'wilma';

第四題

Modify the program from the previous exercise to use named captures
instead of relying on $1. Update the code to display that label name, something like 'word' contains 'Wilma'.

腳本:

#!/usr/bin/perl
use warnings;
use strict;
use v5.24;

while(<>){
        chomp;
        if (m/(?<name>\b\w*a\b)/){
                print "Matched: 'word' contains '$+{name}';\n";
        }else{
                print "No match: |$_|\n";
        }
}

運(yùn)行:

$ ./practice1.pl text1.txt
No match: |fred|
Matched: 'word' contains 'wilma';
No match: |barney|
No match: |Alfred|
Matched: 'word' contains 'wilma';
Matched: 'word' contains 'Wilma';
Matched: 'word' contains 'wilma';

第五題

Extra credit exercise: modify the program from the previous exercise so that
immediately following the word ending in a it will also capture up-to-five characters (if there are that many characters, of course) in a separate capture variable. Update the code to display both capture variables. For example, if the input string says I saw Wilma yesterday, the up-to-five characters are “ yest” (with the leading space). If the input is I, Wilma!, the extra capture should have just one character. Does your pattern still match just plain wilma?

腳本:

#!/usr/bin/perl
use warnings;
use strict;
use v5.24;

while(<STDIN>){
        chomp;
        if (m/
                (\b\w*a\b)
                (.{0,5}) #這一行是說先匹配一個(gè)字符考蕾,然后后面跟0-5個(gè)字符
        /x){
                print "Matched: 'word' contains '$2';\n"; #這里的$2是指定輸出的結(jié)果是第二個(gè)匹配的pattern
        }
}

運(yùn)行:

$ ./practice1.pl
I saw Wilma yesterday #輸入本行社证,回車,得到下一行輸出結(jié)果
Matched: 'word' contains ' yest';
I,Wilma! #輸入另外的文本
Matched: 'word' contains '!';

第六題

Write a new program (not the test program!) that prints out any input line
ending with whitespace (other than just a newline). Put a marker character at the end of the output line so as to make the whitespace visible.

腳本:

#!/usr/bin/perl
use warnings;
use strict;
use v5.24;

while(<STDIN>){
        chomp;
        if (m/\w*\s\z/){ #\w代表匹配word,\s代表匹配空格色罚,\z代表匹配字符串結(jié)尾
                print "Matched: $_*\n"; #這里的星號(hào)用來作為標(biāo)記,方便看到輸出內(nèi)容里的空格
        }else{
                print "Unmatched\n";
        }
}

運(yùn)行:

$ ./practice1.pl
space    #如果這里我輸入space加一個(gè)空格账劲,回車戳护,這時(shí)顯示的是matched,輸出的內(nèi)容里可以看出單詞和星號(hào)之間有空格瀑焦。
Matched: space *
space   #但是如果這里我只輸入space腌且,回車后就顯示unmatched
Unmatched
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市榛瓮,隨后出現(xiàn)的幾起案子切蟋,更是在濱河造成了極大的恐慌,老刑警劉巖榆芦,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件柄粹,死亡現(xiàn)場離奇詭異,居然都是意外死亡匆绣,警方通過查閱死者的電腦和手機(jī)驻右,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來崎淳,“玉大人堪夭,你說我怎么就攤上這事。” “怎么了森爽?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵恨豁,是天一觀的道長。 經(jīng)常有香客問我爬迟,道長橘蜜,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任付呕,我火速辦了婚禮计福,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘徽职。我一直安慰自己象颖,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布姆钉。 她就那樣靜靜地躺著说订,像睡著了一般。 火紅的嫁衣襯著肌膚如雪潮瓶。 梳的紋絲不亂的頭發(fā)上陶冷,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天,我揣著相機(jī)與錄音筋讨,去河邊找鬼埃叭。 笑死,一個(gè)胖子當(dāng)著我的面吹牛悉罕,可吹牛的內(nèi)容都是我干的赤屋。 我是一名探鬼主播,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼壁袄,長吁一口氣:“原來是場噩夢啊……” “哼类早!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起嗜逻,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤涩僻,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后栈顷,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體逆日,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年萄凤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了室抽。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 37,997評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡靡努,死狀恐怖坪圾,靈堂內(nèi)的尸體忽然破棺而出晓折,到底是詐尸還是另有隱情,我是刑警寧澤兽泄,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布漓概,位于F島的核電站,受9級(jí)特大地震影響病梢,放射性物質(zhì)發(fā)生泄漏胃珍。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一飘千、第九天 我趴在偏房一處隱蔽的房頂上張望堂鲜。 院中可真熱鬧栈雳,春花似錦护奈、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蛀骇,卻和暖如春厌秒,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背擅憔。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工鸵闪, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人暑诸。 一個(gè)月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓蚌讼,卻偏偏與公主長得像,于是被迫代替她去往敵國和親个榕。 傳聞我的和親對象是個(gè)殘疾皇子篡石,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評論 2 345