i want to replace comma from decimal string
For example: i have a text
"Sample content 2.6g ident. 2um the 84.45gm with 2,8g and some 23.83 that it".
Expected output:
"Sample content 2,6g ident. 2um the 84,45gm with 2,8g and some 23,83 that it".
Please suggest me how to replace comma from decimal in php
digit.digitand replaces it withdigit,digit. Don't know how to do it in your language, sorry.