RE: [PHP-DB] Exact String replace with eregi_replace()

2002-02-08 Thread Rick Emery
AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Exact String replace with eregi_replace() hi I'm trying to replace the exact match of 'is' with ','.. But all the matches of 'is' in the string gets replaced how can i avoid this??? ?php echo ereg_replace (^is$, ,, This is a dismissal

[PHP-DB] Exact String replace with eregi_replace()

2002-02-08 Thread Desikan
-DB] Exact String replace with eregi_replace() hi I'm trying to replace the exact match of 'is' with ','.. But all the matches of 'is' in the string gets replaced how can i avoid this??? ?php echo ereg_replace (^is$, ,, This is a dismissal of windows based

Re: [PHP-DB] Exact String replace with eregi_replace()

2002-02-08 Thread Paul Burney
on 2/8/02 9:05 PM, Desikan at [EMAIL PROTECTED] appended the following bits to my mbox: Actually I want to replace is alone from the string and not all the words that contains is... I have tried with ^.$is.$ --- but yields nothing This kind of question really belongs on the PHP General