jquery remove all non numeric from string code example
Example: javascript remove non numeric chars from string keep dot
var s = "-12345.50 €".replace(/[^\d.-]/g, ''); // gives "-12345.50"
var s = "-12345.50 €".replace(/[^\d.-]/g, ''); // gives "-12345.50"