Re: preg_replace

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

 



If you only want to replace the string 'TAG000000-', you can just use 'str_replace()' (no need to use regular expression).

http://php.net/manual/en/function.str-replace.php

If you DO want to use regular expression (with preg_replace()), then you need to understand regular expressions first:

http://www.regular-expressions.info/


Le 01/11/2013 15:06, leam hall a écrit :
Despite my best efforts to ignore preg_replace, it seems the best answer
for the current problem. That is, if I can get it to work...

Problem code:

         $remove = "TAG000000-";
         $replaceWith = "";
         $newTitle = preg_replace($remove, $replaceWith, $title);

This, as well as using the $remove and $replaceWith as themselves and not
variables, gives:

PHP Warning:  preg_replace(): Delimiter must not be alphanumeric or
backslash

Thoughts?

Leam


--
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