Hi all,

I'm trying to change the string, for example,

$string = "11.abcd.32.efgh.53.ijk";

to

11.abcd.

32.efgh.

53.ijk.

with ereg_replace.

Like 

ereg_replace("\.[0-9]","<BR>",$string);

How can I recover the original characters 
after replacing them with <BR> 
in ereg_replace? 

ereg_replace("\.[0-9]","<BR>\\0",$string) gives me the
wrong result like:

11.abcd.

32.efgh.

53.ijk.


thank you in advance.

Joshua 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to