http://qs321.pair.com?node_id=1165545


in reply to Re^2: Issues with Split
in thread Issues with Split

Here is what afoken was talking about -- instead of this:
my ($type, $restofstring) = /^type=(\w+) (.+)$/; for $restofstring (split) { my ($key, $val) = split /=/, $restofstring; $hash{$type}{$key} = $val; }
you should do this:
my ($type, $restofstring) = /^type=(\w+) (.+)$/; for $token ( split ' ', $restofstring ) { my ($key, $val) = split /=/, $token; $hash{$type}{$key} = $val; }