Dear Sir/m'am How can i replace ther deprecated ereg_replace with preg_replace or str_replace and still have the same functionality as in the code below?
return ereg_replace("^(.*)%%number%%(.*)$","\\1$i\\2",$number);
///this doesnt work
return preg_replace("^(.*)%%number%%(.*)$","\\1$i\\2",$number);
Anyone smarter have a clue?
ereg_*withpreg_*and call it a day. Both functions use different regex syntaxes and you'll have to learn the PCRE syntax. They're not too different, though... – BoltClock♦ Jan 21 '11 at 13:14