gpt4 book ai didi

java - 搜索字符串以在 Java 中多次查找子字符串

转载 作者:行者123 更新时间:2023-11-29 05:12:03 27 4
gpt4 key购买 nike

我有一个字符串,那么如何检查在该字符串中找到特定子字符串的次数?

例如,

String1 = "The fox and the hound"

,我想知道 “the” 这个词出现了多少次。

我的想法是,因为“the”的长度为 3,所以我可以检查字符串中每组三个字符,但我希望有更有效的方法。

最佳答案

您可以像这样使用 StringUtils 进行计数:

String string = "The fox and the hound".toLowerCase(); // to lower

int count = StringUtils.countMatches(string, "the"); // count is 2

关于java - 搜索字符串以在 Java 中多次查找子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28079128/

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