I have an input file like below:
start
f1="apple"
f2="banana"
f3="berry"
end
start
f1="guava"
f2="banana"
f3="berry"
end
start
f1="apple"
f2="cucumber"
f3="orance"
end
I am planning to create a hash with values as arrays.
All the tags will be in a temporary array and and in between the tags there is a field f1
whose value will be the key of the hash.
From start to end it will be stored in temporary array, and once the end is reached, the array is pushed as a value of hash with key as the value found after the latest string f1=
I have written the following code but it does not work.
Could anyone suggest any correction here?
#!/usr/bin/perl -w
use strict;
use Data::Dumper;
open( FILE, "<", "temp2" );
my %FILEDATA;
my @tmp = ();
my $fruit = "";
while ( <FILE> ) {
chomp( $_ );
push @tmp, $_;
my @linefields = split( '=', $_ );
if ( $linefields[0] =~ /f1/ ) {
$fruit = $linefields[1];
}
if ( $_ =~ /end/ ) {
if ( $fruit eq "apple" ) {
if ( exists $FILEDATA{"apple"} ) {
push( @{ $FILEDATA{"apple"} }, @tmp );
}
else {
$FILEDATA{"apple"} = @tmp;
}
}
elsif ( $fruit eq "guava" ) {
if ( exists $FILEDATA{"guava"} ) {
push( @{ $FILEDATA{"guava"} }, @tmp );
}
else {
$FILEDATA{"guava"} = @tmp;
}
}
undef @tmp;
}
}
print Dumper( \%FILEDATA );
Try this code