>>> Dan Armstrong <[EMAIL PROTECTED]> 09/02/2005 1:49:08 pm >>>

>When I run it on a this big glom of html, I get only the first
>occurrence, the words LA BELLE EPOQUE.

So, in the original large glob of html, is it all on one line?  What
happens when you stick the "g" modifier on your regex?

while (/\<FONT SIZE=2 COLOR="#0000FF">(.*?)<\/FONT>/g)
{
        print $1, "\n";
}

Does it pick up the rest then?

Hope this helps,

Jeff Eggen
IT Programmer Analyst
Saskatchewan Government Insurance
Ph (306) 751-1795
email [EMAIL PROTECTED]
************DISCLAIMER*************
This e-mail and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed.  If 
you are not the named addressee, please notify the sender immediately by e-mail 
if you have received this e-mail by mistake and delete this e-mail from your 
system. If you are not the intended recipient you are notified that using, 
disclosing, copying or distributing the contents of this information is 
strictly prohibited.
************DISCLAIMER*************

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to