in reply to hash of arrays -- Im missing something
you're throwing away the results of the outside map. Wouldn't this...map { push (@status, $_) } map { split(/\n/,$_) } $raw_data;
do the same thing? Or am I misunderstanding?@status = split /\n/, $raw_data;
andy.
update: or even
foreach (split /\n/, $raw_data) { ... }
|
|---|