in reply to modify the contents of an array
@arr = ('092205', '092305', '092605'); $_ = join "/", unpack("a2a2a2", $_) for @arr;
print "$_\n" for @arr;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: modify the contents of an array
by ryanc (Monk) on Sep 30, 2005 at 16:31 UTC |