in reply to How to remove unwanted text from elements of an array?
How about:
| | hand waving here. | # that didn't work: @array1 = map { s/INVITE:// } @array; @array1 = @array; $_ =~ s/INVITE:// foreach @array1; # that works... | | #
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to remove unwanted text from elements of an array?
by Anonymous Monk on Oct 06, 2006 at 13:55 UTC | |
|
Re^2: How to remove unwanted text from elements of an array?
by caelifer (Scribe) on Oct 06, 2006 at 19:36 UTC |