共计 439 个字符,预计需要花费 2 分钟才能阅读完成。
有两种常用的方法来删除 Java 字符串中的某个字符:
- 使用 substring() 方法:
String str = "Hello World";
char charToRemove = 'o';
int index = str.indexOf(charToRemove);
if(index != -1) {str = str.substring(0, index) + str.substring(index + 1);
}
System.out.println(str); // 输出 "Hell World"
- 使用 replace() 方法:
String str = "Hello World";
char charToRemove = 'o';
str = str.replace(String.valueOf(charToRemove), "");
System.out.println(str); // 输出 "Hell Wrld"
这两种方法都可以删除指定的字符,可以根据具体需求选择使用哪种方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完