I have an array. The elements in the array are containing semi colon in between them.
Array looks something like this:
@Array = { "AUT;E;1",
"AUT;E;2",
"CHE;A;1",
"CHE;C;4"
};
I want to split the array elements using ';' (semicolon) as delimiter.
By using hash of hashes I want to store 'AUT' as key and under that want to store E => 1 and E => 2.
i.e I needed the hash as
%HashOfElem = (
'AUT' => {
'E' => 1,
'E' => 2
},
'CHE' => {
'A' => 1,
'C' => 4
}
)
For that purpose I wrote the following code which is not behaving as expected :(
foreach(@Array)
{
my @TmpArray = split(/;/,$_);
%HashOfElem = (
$TmpArray[0] => {
$TmpArray[1] => $TmpArray[2]
}
);
}
If my approach is wrong then which data structure in perl can be used to achieve above purpose?
Please help..
E => 1 and E => 2, both can't be in the same hash. – DarkCthulhu Oct 24 '12 at 11:37$TmpArray[0]exists so you'll clobber existing values. – dgw Oct 24 '12 at 11:40