remove character from a string code example
Example 1: remove from string python
"Str*ing With Chars I! don't want".replace('!','').replace('*','')
Example 2: java string remove character
String str = "abcdDCBA123";
String strNew = str.replace("a", "");
Example 3: how to delete character in string java
# subString(int start, int end);
String a = "Hello!";
b = a.subString(0,a.length()-1) #Remove the last String
# b should be "Hello" then
Example 4: 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);
}
}
Example 5: remove charachter from string
if(String.charAt(1) == String.charAt(2){
}