Answers for "remove all non letters from string javascript"

5

remove non alphanumeric characters javascript

input.replace(/\W/g, '') //doesnt include underscores


input.replace(/[^0-9a-z]/gi, '') //removes underscores too
Posted by: Guest on June-01-2020
2

js remove all non numeric from string

numString = myString.replace(/\D/g,'');
Posted by: Guest on October-24-2020
0

remove non letters from a string javascript

// remove non-letters from a string
function lettersOnly(str) {
	return str.replace(/[^a-zA-Z]/g,"");
   //or return str.match(/[a-z]/gi).join('');
   //or return str.replace(/[^a-z]/gi,""); 
}

console.log(lettersOnly("R!=:~0o0./c&}9k`60=y"));		//"Rocky"
console.log(lettersOnly("^,]%4B|@56a![0{2m>b1&4i4"));	//"Bambi"
console.log(lettersOnly("^U)6$22>8p)."));				//"Up"
Posted by: Guest on March-12-2021
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 "remove all non letters from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language