Possible Duplicates:
Changing ereg_replace to equivalent preg_replace
Converting ereg expressions to preg

Can anyone show me the equivalent of :

ereg_replace("\n#[^\n]*\n", "\n", $sql)

in preg_replace

Thanks

link|improve this question
feedback

closed as exact duplicate by salathe, yes123, Wrikken, netcoder, C. A. McCann Jun 8 '11 at 19:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

All you need in this case is delimiters (here /):

preg_replace("/\n#[^\n]*\n/", "\n", $sql)

Also read about the difference of PCRE from POSIX.

link|improve this answer
+1 for the differences link. – Felix Kling Jun 7 '11 at 18:17
feedback
preg_replace("~\n#[^\n]*\n~", "\n", $sql);
link|improve this answer
1  
An easy +1 for you friend. – stefgosselin Jun 7 '11 at 18:06
feedback

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