in reply to Re: modify the contents of an array
in thread modify the contents of an array
Also from perlstyle:
Avoid using grep() (or map()) or `backticks` in a void context, that is, when you just throw away their return values. Those func- tions all have return values, so use them. Otherwise use a fore- ach() loop or the system() function instead.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: modify the contents of an array
by Anonymous Monk on Sep 29, 2005 at 12:01 UTC | |
by blazar (Canon) on Sep 29, 2005 at 12:15 UTC | |
by Anonymous Monk on Sep 29, 2005 at 12:54 UTC | |
by Anonymous Monk on Sep 29, 2005 at 13:22 UTC | |
by blazar (Canon) on Sep 29, 2005 at 13:06 UTC | |
by Anonymous Monk on Sep 29, 2005 at 13:35 UTC | |
| |
|
Re^3: modify the contents of an array
by prasadbabu (Prior) on Sep 29, 2005 at 11:46 UTC |