in reply to manipulating array
Instead, loop through your array, removing the column you don't want:
for my $line (@call) { # remove A192.*4 and following whitespace from the beginning of eac +h line $line =~ s/^A192.*4\s+//; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: manipulating array
by pysome (Scribe) on Aug 23, 2007 at 06:57 UTC |