Answers for "remove alphabet from string javascript"

1

javascript remove non numeric chars from string keep dot

var s = "-12345.50 €".replace(/[^\d.-]/g, ''); // gives "-12345.50"
Posted by: Guest on February-21-2020
0

remove alphabet from string javascript

var s = "-12345.50 €".replace(/[^\d.-]/g, '');
Posted by: Guest on June-24-2021

Code answers related to "remove alphabet from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language