in reply to Re: Help in formating the output
in thread Help in formating the output
and this is working but can these loops simplified....?foreach my $ts ($te->table_states) { foreach my $row ($ts->rows) { if ($row !~ "disabled"){ my @users = split /,/,$row->[1]; foreach (@users) { print "$row->[0],$_ \n"; } } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Help in formating the output
by moritz (Cardinal) on Jan 13, 2009 at 11:43 UTC |