What I am trying to do is retrieve the key of a key value pair in a hash because all I have from a file I am reading in is a value.
The code produces something like this:
12345 welcome.html
The code for this part is:
my %bugs;
my $bug;
open(FH, '-|', "lynx -dump '$queryurl'") or die "Could not lynx $queryurl: $!";
while (<FH>)
{
if (/<bz:id[^>]*>([^<]*)</)
{
$bug = $1;
}
if (/<bz:url[^>]*>([^<]*)</)
{
my $url = $1;
$bugs{$url} = $bug;
$bug = undef;
}
}
close(FH);
# for debugging purposes
foreach my $bug (keys %bugs)
{
print "$bugs{$bug} $bug\n";
}
exit;
Then, somewhere else in a file called bad.txt I get output like:
Documents that failed:
daerror 6 0 6 welcome.html
The code for reading this file is :
my $badfile = "$dir/bad.txt";
open(FH, "<$badfile") || die "Can not open $badfile: $!";
# ignore first line
<FH>;
while (<FH>)
{
chomp;
if (!/^([^ ]+) [^ ]+ [^ ]+ [^ ]+ ([^ ]+) [^ ]+$/)
{
die "Invalid line $_ in $badfile\n";
}
my $type = $1;
my $testdoc = $2;
}
But I already have the filename extracted from this using a regular expression.

mand set $type and $testdoc all on one line.my($type,$testdoc) = $_ =~ m/^(\S+) \S+ \S+ \S+ (\S+) \S+$/; die "Invalid line $_ in $badfiles\n" unless defined $type && defined $testdoc;. – mrk Jun 21 '11 at 17:02