programming-examples/perl/Hash/Loop through an associative array While loop.pl
2019-11-15 12:59:38 +01:00

9 lines
274 B
Raku

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