如何在句子中搜索特定单词
How to search for a particular word in a sentence
我实际上是 Java 的新手,正在尝试做一个小项目。所以,在我的项目中,我想让用户输入一个句子,我希望程序搜索句子中的特定单词并根据该单词给出输出。我使用 NetBeans 开发我的应用程序。
我的代码是这样的
String Sentence=jTextField1.getText();
if (Sentence.equals("Hello")
{
jTextField2.setText("Hello was found");
}
else if (Sentence.equals("Donkey")
{
jTextField2.setText("Donkey was found");
}
我知道这段代码毫无意义,也不会 运行,但我把它放出来是为了让人们对我要实现的目标有一个大概的了解。
请帮帮我。
像这样使用.contains
:
String Sentence = jTextField1.getText();
if (Sentence.contains("Hello")) {
jTextField2.setText("Hello was found");
} else if (Sentence.contains("Donkey")) {
jTextField2.setText("Donkey was found");
}
我实际上是 Java 的新手,正在尝试做一个小项目。所以,在我的项目中,我想让用户输入一个句子,我希望程序搜索句子中的特定单词并根据该单词给出输出。我使用 NetBeans 开发我的应用程序。
我的代码是这样的
String Sentence=jTextField1.getText();
if (Sentence.equals("Hello")
{
jTextField2.setText("Hello was found");
}
else if (Sentence.equals("Donkey")
{
jTextField2.setText("Donkey was found");
}
我知道这段代码毫无意义,也不会 运行,但我把它放出来是为了让人们对我要实现的目标有一个大概的了解。
请帮帮我。
像这样使用.contains
:
String Sentence = jTextField1.getText();
if (Sentence.contains("Hello")) {
jTextField2.setText("Hello was found");
} else if (Sentence.contains("Donkey")) {
jTextField2.setText("Donkey was found");
}