Answers for "remove non letters from string js"

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
9

how to remove lasr char from string in javascript

str=str.slice(0, -1);
Posted by: Guest on June-21-2020

Code answers related to "remove non letters from string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language