共计 547 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用以下方法来去掉字符串中的某些字符:
- 使用 replaceAll() 方法:该方法使用正则表达式来替换字符串中的字符。
String str = "Hello, World!";
String newStr = str.replaceAll("[,]", "");
System.out.println(newStr); // Output: HelloWorld!
- 使用 replace() 方法:该方法用新的字符替换字符串中的旧字符。
String str = "Hello, World!";
String newStr = str.replace(",", "").replace(" ", "");
System.out.println(newStr); // Output: HelloWorld!
- 使用 substring() 方法:该方法返回字符串中指定位置的子字符串。
String str = "Hello, World!";
String newStr = str.substring(0, 5) + str.substring(7);
System.out.println(newStr); // Output: HelloWorld!
这些方法都可以根据具体需求选择使用,根据实际情况选择最适合的方法来去掉字符串中的某些字符。
丸趣 TV 网 – 提供最优质的资源集合!
正文完