I have a issue with regex pattern. It replace not only "," but also all characters that are before.
I would like to replace first occurrence of the "," to ".":
"1,,000.23" -> "1.,000.23"
This pattern I am using now :
^(.*?),
Result that I receive is :
"1,,000.23" -> ".,000.23"
Expected result :
"1,,000.23" -> "1.,000.23"