Perl新手在這裏...我用這個工作perl腳本的一些HASH代碼的幫助,我只需要幫助理解代碼,如果它可以寫的方式,我會理解使用HASHES更容易或視覺?幫助理解perl hash
總之,該腳本執行一個正則表達式來過濾日期,剩下的正則表達式將提取與該日期相關的數據。
use strict;
use warnings;
use constant debug => 0;
my $mon = 'Jul';
my $day = 28;
my $year = 2010;
my %items =();
while (my $line = <>)
{
chomp $line;
print "Line: $line\n" if debug;
if ($line =~ m/(.* $mon $day) \d{2}:\d{2}:\d{2} $year: ([a-zA-Z0-9._]*):.*/)
{
print "### Scan\n" if debug;
my $date = $1;
my $set = $2;
print "$date ($set): " if debug;
$items{$set}->{'a-logdate'} = $date;
$items{$set}->{'a-dataset'} = $set;
if ($line =~ m/(ERROR|backup-date|backup-size|backup-time|backup-status)[:=](.+)/)
{
my $key = $1;
my $val = $2;
$items{$set}->{$key} = $val;
print "$key=$val\n" if debug;
}
}
}
print "### Verify\n";
for my $set (sort keys %items)
{
print "Set: $set\n";
my %info = %{$items{$set}};
for my $key (sort keys %info)
{
printf "%s=%s;", $key, $info{$key};
}
print "\n";
}
什麼我想了解的是這些行:
$items{$set}->{'a-logdate'} = $date;
$items{$set}->{'a-dataset'} = $set;
又一次幾行下來:
$items{$set}->{$key} = $val;
這是哈希引用的例子嗎?散列哈希?
我想我很困惑與使用{$}集的:-(
如果你還沒有閱讀[perldoc perlreftut](http://perldoc.perl.org/perlreftut.html)和[perldoc perldsc](http://perldoc.perl.org/perldsc.html),他們會好的地方開始。 – hobbs 2010-08-03 23:42:38
@hobbs - 謝謝,這裏有一些很好的例子。 – jdamae 2010-08-04 02:42:43