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?

link|improve this question
You don't just replace ereg_* with preg_* 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
feedback

4 Answers

up vote 1 down vote accepted

Try this:

return ereg_replace("^(.*)%%number%%(.*)$","\\1$i\\2",$number);

becomes

return preg_replace("/^(.*)%%number%%(.*)$/","\\1$i\\2",$number);

Note the / around the regex.

link|improve this answer
Complaints about No ending delimiter '/' found – Koenraad Jan 21 '11 at 13:48
Got it here's the answer : return preg_replace("/^(.*)%%number%%(.*)$/","$i",$number); thnx fr the effort – Koenraad Jan 21 '11 at 14:02
Sorry about that, I put the closing / in the wrong place – jb1785 Jan 21 '11 at 14:07
feedback

I'll go with a read the fabulous manual approach.

The PHP Manual has a section for moving from POSIX Regex to PCRE.

  1. The PCRE functions require that the pattern is enclosed by delimiters.
  2. Unlike POSIX, the PCRE extension does not have dedicated functions for case-insensitive matching. Instead, this is supported using the /i pattern modifier. Other pattern modifiers are also available for changing the matching strategy.
  3. The POSIX functions find the longest of the leftmost match, but PCRE stops on the first valid match. If the string doesn't match at all it makes no difference, but if it matches it may have dramatic effects on both the resulting match and the matching speed. To illustrate this difference, consider the following example from "Mastering Regular Expressions" by Jeffrey Friedl. Using the pattern one(self)?(selfsufficient)? on the string oneselfsufficient with PCRE will result in matching oneself, but using POSIX the result will be the full string oneselfsufficient. Both (sub)strings match the original string, but POSIX requires that the longest be the result.

Good luck,
Alin

link|improve this answer
+1 I was facing similar issues like OP but just replacing ereg with preg didn't solve my problems (even with slash delimiters). Your answer points to the right place, difference between two regex flavors, such as PCRE used by preg functions and POSIX ERE used by ereg. Thanks – Wh1T3h4Ck5 Mar 8 at 1:20
feedback

Perl Compatible Regular Expressions, used by the preg_ functions in PHP require a demarcation character in the pattern string, defining where the actual string pattern starts and ends, and where attributes for extra functionality, such as case insensitivity, is.

For example:

$pattern = "/dog/i"; // Search pattern for "dog", case insensitive.
$replace = "cat";

$subject = "Dogs are cats.";

$result = preg_replace($pattern, $replace, $subject);
link|improve this answer
feedback

I've converted your POSIX regex to PCRE regex as follows:

  1. enclosed the original regular expression inside a delimiter -- I used @ but / is more common
  2. the greediness of the two flavors of regular expressions differ, so I modified regular expression accordingly. I chose the sequence not-number,number,not-number for simplicity. The original expression, when used in PCRE, would match the test string as Prev 99,9, Next. The revised expression matches correctly as Prev ,999, Next.
  3. $i is probably a number, it would therefore confuse the PREG engine when it tries to make replacements. Suppose if $i is 1, the expression $1$i$2 evaluates to $11$2 which causes the engine to look for 11th match -- which isn't there. So I wrote all $n back references as ${n}. An extra backslash is required when you're using $ inside double quotes.

Pretty easy? So we end up with:

$i = rand(1, 999); // for demonstration
$number = "Prev 999 Next"; // for demonstration
return preg_replace("@^([^\\d]*)\\d+([^\\d]*)$@", "\${1}$i\${2}", $number);

Recommended reading: Differences (of PCRE regex) from POSIX regex

link|improve this answer
Thnx for the swift reaction i get No error msgs wich is good but he doesnt show the actual page number but prints out a literal %%number%% instead of the pager numbers it should print – Koenraad Jan 21 '11 at 13:33
a) what does the string $number looks like? something like prev 3 next? b) what does $i contain? Anyway I've edited my answer a little. – Salman A Jan 22 '11 at 6:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.