Can you show us the code that you have tried? The code thats not working?
What it sounds like to me is that you are trying to loop through an array with 900+ elements and find the ones that match "valuen".
use strict; use warnings; my @array = qw(valuen valued valuec valueq values); for (@array) { if (/valuen/) { print; } else { print ";"; } }
In reply to Re: Determine if array value in string results
by james28909
in thread Determine if array value in string results
by ImJustAFriend
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |