hi
i have some texts and they have ( number ) in them.
i want to remove ( number ) of them by ereg_replace. i tried to write regular for it but could not sucess.
may you help me with this?
thanks
<?
$string="This is ( 381 ) a book";
ereg_replace("?", "?", $string);
echo $string // output: This is a book
?>