keep only digits from string and convert it to integer javascript 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"