Re: help with preg_replace only part of the string

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Replace the middle (.*) with ([^<]*).  This tells the regex engine to
ignore new opening tags.

Cheers,

David

Georgi Ivanov wrote:
> Hi,
> I want to replace the content of html links : <a href="foo" 
> name="bla">REPLACETHIS</a>.
> 
> $html=preg_replace("/(<a.*name=.*>)(.*)<\/a>/isU",$link,$html,1);
> This generally works but removes <a>,</a> tags too.
> How to make it work without removing anything else than (.*) in the middle of 
> <a>.*</a>
> 
> Thanks in advance.
> 


-- 
David Grant
http://www.grant.org.uk/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux