$s has the value "(9,1%)"
No I want to str_replace the "(" and ")" for ""(nothing) with just one row of code, how?
Thanks.
I generally use preg for string patterns... <? $s = "looksie at this funky number thing🙁9,1%)"; $s = preg_replace('/([0-9,%\s]*)/','',$s); ?>