Answers for "ts remove all signs from string without numbers"

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

Code answers related to "ts remove all signs from string without numbers"

Code answers related to "Javascript"

Browse Popular Code Answers by Language