cipher has asked for the wisdom of the Perl Monks concerning the following question:
The output is:use strict; use warnings; use Data::Dumper; my %hash; while (<DATA>) { chomp; my ($type, $restofstring) = /^type=(\w+) (.+)$/; for $restofstring(split){ my ($key, $val) = split /=/, $restofstring; $hash{$type}{$key} = $val; } } print Dumper \%hash; __DATA__ type=first a=1 b=2 c=3 type=second d=4 e=5 f=6 type=third g=7 h=8 i=9
I was expecting the output to be like this.$VAR1 = { 'third' => { 'h' => '8', 'type' => 'third', 'i' => '9', 'g' => '7' }, 'first' => { 'type' => 'first', 'c' => '3', 'b' => '2', 'a' => '1' }, 'second' => { 'd' => '4', 'e' => '5', 'type' => 'second', 'f' => '6' } };
when I print $restofstring I only see "a=1 b=2 c=3", etc. I am not sure why $key, $value include the $type variable when I think I am exclusively splitting only on variale $restofstring. What am I doing wrong ?$VAR1 = { 'third' => { 'h' => '8', 'i' => '9', 'g' => '7' }, 'first' => { 'c' => '3', 'b' => '2', 'a' => '1' }, 'second' => { 'd' => '4', 'e' => '5', 'f' => '6' } };
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Issues with Split
by afoken (Chancellor) on Jun 14, 2016 at 04:08 UTC | |
by cipher (Acolyte) on Jun 14, 2016 at 05:06 UTC | |
by graff (Chancellor) on Jun 14, 2016 at 10:34 UTC | |
by cipher (Acolyte) on Jun 14, 2016 at 11:24 UTC | |
Re: Issues with Split
by duyet (Friar) on Jun 14, 2016 at 07:41 UTC | |
by cipher (Acolyte) on Jun 14, 2016 at 11:25 UTC | |
Re: Issues with Split
by johngg (Canon) on Jun 14, 2016 at 09:25 UTC | |
by cipher (Acolyte) on Jun 14, 2016 at 11:27 UTC |