I want to convert String to Double already know how to do, but my string has, (comma) and the double does not accept, how do I turn this comma into point? Can someone help me?
I want to convert String to Double already know how to do, but my string has, (comma) and the double does not accept, how do I turn this comma into point? Can someone help me?
Replace takes the first item and replaces the second in the applied variable.
string = string.replace(",", ".");