This is a discussion on Re: [PHP] preg_replace question within the PHP General forums, part of the PHP Programming Forums category; Jabber@Raditha.Com wrote: > Then use a simple strstr to first find out if the string does contain > ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Jabber@Raditha.Com wrote:
> Then use a simple strstr to first find out if the string does contain > mydomain.com :-) My example was a simple one. I can't just check to see if the string contains the mydomain.com first because I am not passing a string to preg_replace but a whole text file. I want preg_replace to replace all occurrences in the text file of the regexp: "#<a href=(\"|')http://([^\"']+)(\"|')#ime" But only if the regexp doesn't contain http://www.mydomain.com. How can I get preg_replace to ignore instances of http://www.mydomain.com when it is doing it's global search and replace? Thanks, Jean-Christian Imbeault |