先给出一个测试用的文本文件:
cat ./test.txt
Helo, This is a test file.
This file contain a story about fred flintstone and his friend.
One day fred went to shoping, he met Sam who is his friend.
Sam was also for shopping. So they got together.
lalalal fred or wilma.
When they on their way home, they met frederick and Alfred.
Frederick and Alfred want to look after their granpa Mr. Slate.
this line just test Fred
and this line FRED
add this line Bamm-Bamm
wilma and fred
aa
abcdefhijk
foot
goooood
perl程序为:
#! /usr/bin/perl
if (! open TEST,"./test.txt") {
die $!;
}
while () {
chomp;
if (/\w*a\b/) {
print "|$`<$&>$'\n";
}
}
运行结果为:
|Helo, This is test file.
|This file contain story about fred flintstone and his friend.
|lalalal fred or .
|Frederick and Alfred want to look after their Mr. Slate.
| and fred
|
cat ./test.txt
Helo, This is a test file.
This file contain a story about fred flintstone and his friend.
One day fred went to shoping, he met Sam who is his friend.
Sam was also for shopping. So they got together.
lalalal fred or wilma.
When they on their way home, they met frederick and Alfred.
Frederick and Alfred want to look after their granpa Mr. Slate.
this line just test Fred
and this line FRED
add this line Bamm-Bamm
wilma and fred
aa
abcdefhijk
foot
goooood
perl程序为:
#! /usr/bin/perl
if (! open TEST,"./test.txt") {
die $!;
}
while () {
chomp;
if (/\w*a\b/) {
print "|$`<$&>$'\n";
}
}
运行结果为:
|Helo, This is test file.
|This file contain story about fred flintstone and his friend.
|lalalal fred or .
|Frederick and Alfred want to look after their Mr. Slate.
| and fred
|
编辑回复