
AndyNewby
Novice
May 24, 2003, 4:21 AM
Post #1 of 5
(3744 views)
|
Hi...I have the following text; <h2>WASHINGTON, May 23 (AFP) -</h2> US soldiers in Iraq seized a truck believed to be loaded with 2,000 gold bars worth as much as 500 million dollars during a ... I am trying to remove the following; <h2>WASHINGTON, May 23 (AFP) -</h2> I have tried; $back =~ s,<h2>(.+?)</h2>,,i ....and... $back =~ s,<h2>.+</h2>,,i ... and ... $back =~ s,<h2>?</h2>,,i None of these seem to remove it. Am I doing it wrong, or is it just a problem with caching on my server, so I do not see the updates? Cheers Andy
|