How to remove all non numeric characters (excluding minus, dot and comma) in a string in Javascript?
Numeric characters are 0 1 2 3 4 5 6 7 8 9 dot comma minus at the start of the string I need to remove all non numeric characters from a string. Here examples 123 -> 123 123.45 -> 123.45 123,45 -> 123,45 -123 -> -123 -123.45 -> -123.45 -123,45 -> -123,45 –123.45 -> … Read more