Badly formed character constant
in
Programming Questions
•
1 year ago
I want to replace the dots in a string with nothing.
With this i get:
- value = value.replace('.', '');
Badly formed character constant.
This works:
- value = value.replaceAll("\\.", "");
But i prefer to get the char version also working to see if there is a speed increase since i have to load a lot. (about 70x37000).
1