programming-examples/perl/Hash/Loop through an associative array While loop.pl

9 lines
274 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
while(<>) {
chop;
($Header, $Value) = split(/:/,$_,2);
$Value =~ s/^\s+//; # remove trailing whitespace
$Heading{$Header} = $Value;
}
while ( ($Head,$Val) = each %Heading) {
print "$Head --> $Val\n";
}