Jump to content

str_replace with regex


Craig Hopson

Recommended Posts

Well, one problem may be that your string doesn't start with "~&". Also, the expression is telling the interpretter to replace the entire string with a single asterisk.

Link to comment
Share on other sites

Still cant get this code to work i have broken it back to basics still giving error

$test = "http://seekface.com/themes/blue/ico.gif";$URL = "www.seekface.com";echo preg_replace($URL," ",$test);

Link to comment
Share on other sites

That's because the expression doesn't match anything in the string. Also, the "." character has a meaning in regular expressions, and your expression is missing delimiters.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...