http://www.perlmonks.org?node_id=191223


in reply to Re: Re: regexp question
in thread regexp question

By not being smart and wanting it in a single regexp. Use your foreach loop and a counter. Increment the counter for each match found, and compare after the loop whether the counter equals the size of the array. Or just bail out whenever there isn't a match, depending a bit on what exactly you want to do.

Abigail

Replies are listed 'Best First'.
Re: Re: regexp question
by kidd (Curate) on Aug 19, 2002 at 16:39 UTC
    Yupi!!!

    I did it...thanks for your help...