in reply to deprecated split ??
or if the inside of your map is really a little more complicated, perhaps you'd like to use a temporary array:@models = map { (split /;\s*/)[1] } @models;
@models = map { my @t = split /;\s*/; ... $t[1]; } @models;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: deprecated split ??
by etcshadow (Priest) on May 28, 2004 at 03:13 UTC |