http://qs1969.pair.com?node_id=620633


in reply to Re: grep with multiple choice
in thread grep with multiple choice

Hello Johnson,
Thanks for the code.Your interpretation was wright. What 
actually I was looking for is as follows: 
the array was  my @array = qw(Julia_Roberts(1,5) Cintheia Chelsia Rohan);
The above @array is actually dynamic feeded array. In which 
the possibility is I may not get "Cintheia" all the time.So 
I may need to grep for "Cintheia" along with the "Julia_Roberts" . If both of them found then the next code 
you wrote follows as it is .

Actually I dont know how to grep for more than one words 
from the array.

Would look for your comments
SR

Replies are listed 'Best First'.
Re^3: grep with multiple choice
by Roy Johnson (Monsignor) on Jun 12, 2007 at 15:56 UTC
    If you had two different things to grep for, you would do two different greps. I do not know what the final result would be if you started with "Cintheia(2,3)" in the array and grepped for "Cintheia".

    Caution: Contents may have been coded under pressure.