Answers for "replace all alphabets in a 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
2

how to replace all characters in a string javascript

const string = "a, b, c, d, e, f";
string.replace(/,/g, '');
console.log(string) //a b c d e f
Posted by: Guest on March-24-2021

Code answers related to "replace all alphabets in a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language