- 论坛徽章:
- 0
|
我也能写,不过哪个正则表达式不知道怎么写 呵呵 多谢指点!! 问题解决了
#!/usr/bin/perl -w
use strict;
use warnings;
my $key;
my %model;
my @match;
my $type;
my $fileName = 'Motorola.txt';
eval {
open(FN, $fileName) or die "Can't open the file: $!";
while(<FN>) {
my $info = $_;
chomp($info);
my($value,$mykey) = /"(.*?)".*"(.*?)"/;
$model{$mykey} = $value;
}
};
if($@) {
print "An error occurred($@),continuing\n";
}
#%model = ('58533' => 'MPx100', '58538' => 'MPx220', '8558' => 'P7389i');
foreach $key (sort keys(%model)) {
eval {
system("wget http://product.pconline.com.cn/mobile/motorola/$key\_detail.html");
open(FH, "$key\_detail.html") or die "Can't open the file: $!";
while(<FH>) {
my $info = $_;
chomp($info);
if($info =~ /SyncML/) {
$type = $model{$key};
push(@match, $type);
}
}
};
if($@) {
print "An error occurred($@),continuing\n";
}
}
print "@match\n"
~ |
|