> However the script continues
> print @list3;
> my $var1='META';
> @lista= grep{$var1} @list3;## not picked up at all
> print @lista
> 
> anyone any clues

Suppose I'm a little confused but perhaps you meant:

print @list3;
@lista= grep(/META/, @list3);
print @lista;

/g


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to