in reply to Re^2: How to check if a variable's value is equal to a member of a list of values
in thread How to check if a variable's value is equal to a member of a list of values
rather than...if( map { /$string/ } @array) {
if( grep { /$string/ } @array) {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to check if a variable's value is equal to a member of a list of values
by LanX (Saint) on Mar 26, 2013 at 21:37 UTC | |
by dbuckhal (Chaplain) on Mar 26, 2013 at 22:55 UTC | |
by LanX (Saint) on Mar 26, 2013 at 23:00 UTC |