gpt4 book ai didi

java - 从字符串中删除单词(使用特定方法时)

转载 作者:行者123 更新时间:2023-12-02 06:35:33 25 4
gpt4 key购买 nike

我想从给定字符串中删除 1 个特定单词(“STOP”)的所有实例。我需要通过首先分割字符串来完成此任务

这是我到目前为止所得到的:

public static String telegram(String sentence)
{
String[] words = sentence.split(" ");
for(int i = 0; i < words.length; i++)
{
if(words[i].equals("STOP"))
{
...
}
}

}

我该如何删除这些文字?我尝试过使用 for 循环并使用单词 null 来创建数组元素,但我不确定这是否有效。

我需要使用方法append(String)和toString(),但我不知道如何使用它们。

提前致谢!

最佳答案

如果你必须使用 split 方法来做到这一点,你会想要这样的东西。

public static String telegram(String sentence)
{
String[] words = sentence.split(" ");
StringBuilder result= new StringBuilder();
for(int i = 0; i < words.length; i++)
{
if(!words[i].equals("STOP"))
{
result.append(words[i]);
result.append(" ");
}
}
return result.toString();

}

如果您不必使用 slip 我建议使用全部替换方法,使您的代码更简单。

关于java - 从字符串中删除单词(使用特定方法时),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19690390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com