in reply to Re: Regex optimization
in thread Regex optimization

I believe I have mislead you, the new lines in the html are in my representation only not in the original. As I said it is the most badly formatted html I've ever seen.

    -Etan

Replies are listed 'Best First'.
Re: Re: Re: Regex optimization
by iakobski (Pilgrim) on May 09, 2001 at 12:32 UTC
    Even easier:
    @results = $str =~ m/>([^<]+)</g;

    -- iakobski