Link to home
Start Free TrialLog in
Avatar of hankknight
hankknightFlag for Canada

asked on

Getting rid of duplicate punctuation

Hello,

I want to remove all duplicates of spaces, dashes, periods and commas.

So
                   Hello--               this is a test,, and only a test........................

Should become
                   Hello- this is a test, and only a test.
Avatar of Robin Hickmott
Robin Hickmott

$my_string     =       str_replace(array(",,","  ","--",".."), array(","," ","-","."), $my_string);
Sorry that should be

$my_string     =       preg_replace(array("/,+/","/ +/","/-+/","/\.+/"), array(","," ","-","."), $my_string);
ASKER CERTIFIED SOLUTION
Avatar of Robin Hickmott
Robin Hickmott

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial