Java在字符串中查找单词
我需要在HTML源代码中找到一个单词。我还需要计算发生的次数。我正在尝试使用正则表达式。但它说找到0个匹配项。
我正在使用正则表达式,因为我认为这是最好的方法。如果有更好的方法,请告诉我。
我需要在HTML源代码中找到单词“ hsw.ads”的出现。
我已采取以下步骤。
int count = 0;{
Pattern p = Pattern.compile(".*(hsw.ads).*");
Matcher m = p.matcher(SourceCode);
while(m.find())count++;
}
但是计数是0;
请让我知道您的解决方案。
谢谢。帮助寻求者
回答:
您应该尝试一下。
private int getWordCount(String word,String source){ int count = 0;
{
Pattern p = Pattern.compile(word);
Matcher m = p.matcher(source);
while(m.find()) count++;
}
return count;
}
在字符串中传递要搜索的单词(非模式)。
以上是 Java在字符串中查找单词 的全部内容, 来源链接: utcz.com/qa/413322.html