> >   if (/^everywhere$|^nowhere$/)
> > Any help is appreciated.
>
>     while (<>) { print if /(every|no)where/ }

Are the anchors relevant?

 while(<>) { print if /^(every|no)where$/ }

__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com

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

Reply via email to