您可以使用String的replaceAll()方法来删除特定的单词。以下是一个示例代码: ```java public class Main { public static void main(String[] args) { String input = "java吧字符串中有个profiles还有个profile"; String output = input.replaceAll("\\bprofile\\b", ""); System.out.println(output); } } ``` 输出结果: ``` java吧字符串中有个profiles还有个 ``` 在这里,`\\b`被用来匹配一个单词的边界,这样可以确保只删除完整匹配的单词。通过调用`replaceAll()`方法,将`"\\bprofile\\b"`替换为空字符串,从而实现删除。 [2024-05-22 09:54:10 | AI写代码神器 | 357点数解答]