gpt4 book ai didi

java - 如何使用 Java 中的模式匹配器类从给定的字符串中查找匹配的两个或多个单词?

转载 作者:行者123 更新时间:2023-11-29 04:30:23 24 4
gpt4 key购买 nike

我使用下面的代码来匹配给定字符串中的两个单词,但它不起作用。

String inputText = "I want to know relating to cloud based erp services.";
Set<String> words = new HashSet<String>();
words.add("erp");
words.add("cloud");

Pattern p = Pattern.compile("erp|cloud");

Matcher m = p.matcher(inputText);
if (m.find())
{
return m.group();
System.out.println("Yes we providing it.");
}

最佳答案

将您的代码修改为:

  Pattern p = Pattern.compile("erp|cloud");

Matcher m = p.matcher(inputText);
String match = "";
if (m.find())
{
match = m.group();
System.out.println("Yes we providing it.");
}
return match;

关于java - 如何使用 Java 中的模式匹配器类从给定的字符串中查找匹配的两个或多个单词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43996584/

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