I want to remove the dots ( .) in a line containing numbersand text.
Example: from S.D.M.StoSDMS
But I want to leave ( .) as numbersit is.
Ex: 123.50to123.50
I tried str_replace(), but it deleted all ( .) s
How can I do this in PHP?
source
share