Answers for "remove all letters from a string"

20

how to remove all characters from a string in python

s = 'abc12321cba'

print(s.replace('a', ''))
Posted by: Guest on August-10-2020
1

how to remove letters from string

public extractLetters(String str){
	String result="";
	for(int i= 0; i< str.length; i++){
	    if(Character.isLetter(str.charAt(i))){
	    result+=str.charAt(i);
	  	}
	}
Posted by: Guest on January-14-2021

Code answers related to "remove all letters from a string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language