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


in reply to REGexp match query

Dear Monks,

I would use the following to get at the data in each line: (untested)

my $output = $rh->get_response; $output = join( " ", split " ", $output ); my @outputlist = split /\ /, $output; foreach (0..$#outputlist) { . . .
Hope this helps!

Regards...Ed

"Well done is better than well said." - Benjamin Franklin