gpt4 book ai didi

java - 完成一些搜索逻辑

转载 作者:行者123 更新时间:2023-11-30 04:06:05 26 4
gpt4 key购买 nike

请帮我添加一些代码来完成逻辑。我有一些搜索方法(public String search(String url, String someword)),它通过jsp标题在内容中查找单词。所以这里有一个代码

    String[] argi = {"http://www.google.com", "http://www.youtube.com"};

for (int i = 0; i < argi.length; i++) {

String result = search(argi[i], "\\b"+word+"\\b");

if (word == null || word.isEmpty()) {

str = "Enter a search word!";
}
else if(!word.matches("^\\w+$")){

str="Incorrect word!";
}

else if (result != null) {

str += "Search phrase " + "<b>"+ word + "</b>" + " have found in " + "<a href=\"" + argi[i] + "\">" + result + "</a>"+ "<p></p>";

}
else if (????????) {str="Word not found!";}
}
}

如果我输入搜索输入一些正常的单词或数字,我应该在最后一个“else if”中输入什么才能得到“str="Word not found!”,内容中不存在

最佳答案

这个 block

else if  (????????) {str="Word not found!";}  //Remove this line

应该是这样的

将此代码移出 for 循环

for (int i = 0; i < argi.length; i++){
}
str="Word not found!";

关于java - 完成一些搜索逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20686040/

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