- 论坛徽章:
- 0
|
实现的功能:
1. 从指定文件target.txt中得到需要的字符串A,B,C,字符串是以"[%A%]"为标记
2. 将A,B,C作为Hash表的key保存,同时赋值相应的Value,不能重复
3. hash的Value是变量名$a, $b, $c
目前只完成第一步,输出内容还是错的,请高手纠错,并能否提示一下第2,3怎么实现?!
#!/usr/bin/perl -w
use strict;
my $file = "target.txt";
if (-e $file) {
open (FH, $file) or die "Can not open the file!$!\n";
while (<FH>) {
if (~/\[%(.*?)%\]/g) {
print "$1\n";
}
}
close(FH);
}
target.txt的内容是(第一行是空行):
a[%A%]tyrt,
a[%B%]245
a[%B%]111
31q35345234tergsrfg
<br>
<img src=SW-[%C%].jpeg>
<br>
<br>
输出内容:
Use of uninitialized value in concatenation (.) or string at D:\tmp.pl line 21, <FH> line 1.
A
A
B
B
3
>
C
C
实际上预期的结果应该是:
A
B
C |
|