gpt4 book ai didi

java - 从java中的字符串中删除单词

转载 作者:行者123 更新时间:2023-11-29 09:54:18 25 4
gpt4 key购买 nike

有人能告诉我我的代码有什么问题吗?

我正在尝试将字符串传递给函数 removeWords(),此函数会从 String 中删除一些信息。

例如,如果我通过:

"I Have a Headach"

函数应该返回:

"Headach"

但是,我的功能不起作用:

public class WordChosen extends Activity {

private TextView wordsList;
private String symptom;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_word_chosen);

//Getting String from VoiceRecognition Activity and displaying it

Intent intent = getIntent();
String wordChosen = intent.getExtras().getString("wordChosen");

//casting the string with TextView to display the result
wordsList = (TextView) findViewById(R.id.wordChosen);

Log.v("Word List:", "+++++"+wordChosen);
//Setting text to be displayed in the textView

removeWords(wordChosen);
Log.v("removewords:", "------- message is displayed");



}

public void removeWords(String wordList)
{
ArrayList<String> stopList = null;
stopList.add("i");
stopList.add("have");
stopList.add("a");

ArrayList<String> result = new ArrayList<String>(Arrays.asList(wordList.split(" ")));
for(int i=0; i<result.size();i++)
{
for(int j=0; j<stopList.size();j++)
{

if (result.get(i).equals(stopList.get(j))) {
break;
}
else {

if(j==stopList.size()-1)
{

wordsList.setText(result.get(i));

}
}
}
}

}
}

最佳答案

public static void main(String[] args) {
String word = "I Have a Headach";
String remove = "I Have a ";
System.out.println(removeWords(word, remove));
}

public static String removeWords(String word ,String remove) {
return word.replace(remove,"");
}

输出:头痛

关于java - 从java中的字符串中删除单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19257172/

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