perl 匹配的一个例子

发布时间:2019-10-19编辑:脚本学堂
perl匹配的一个例子,供大家学习参考。

perl匹配的一个例子,供大家学习参考。
 

复制代码 代码如下:

#!/usr/bin/perl -w
use strict;
my $dir="D:perl_scriptanroidmanifest.txt";
open (F1,"$dir")||die "Cannot open $dir:$!";

while (<F1>) {
if (/<activity/../</action>/) {

if (/MAIN/) {
last;
}
 
if (/</activity>/../<receiver/) {
next;
}
if (/</action>/../<action/) {
if (/android:name="(.+)"/) {
print "$1";
last;
}
}
}
}