-1
I have a question, I need to remove a specific character of a string in my input, I used a mask to convert it into Real, but as it is with comma and point my js script is not recognizing there need to remove the point and comma when running my Function in js .. Ex:
10,000.00
Remove the , .
How can I do that ? Remembering that the numbers I’m getting as string ...
Thank you very much personally I used the examples of you
let mensal = (mensal1.value.replace(/[^0-9]/g, ''))
 let resultSoma1 = (result2.value.replace(/[^0-9]/g, ''))
Worked Perfectly thanks ! to everyone.– Cleidson Silva