Answers for "function to remove acentued letters javascrpt"

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
2

remove all characters from string javascript

const string = "hello world 123";

// remove all o's from the string
string.replace(/o/g, "") // "hell wrld 123"

// remove all letters from the string
string.replace(/[A-Za-z]/g, "") // "  123"

// remove all digits from the string
string.replace(/\d/g, "") // "hello world "
Posted by: Guest on May-30-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language