Example: -this--is---a-test--
-this--is---a-test--
What I want: this-is-a-test
this-is-a-test
Thanks for any answers! :)
Without regular expression....
$string = trim($string,'-'); while (stristr($string,'--')) {$c = str_ireplace('--','-',$string);}