查找字符串中子字符串的出现:故障排除和替代解决方案
执行提供的 Java 代码来计算子字符串的出现次数时在字符串中,您可能会遇到算法不停止的问题。此问题源于 lastIndex 不断递增,而没有进行检查以确保其不超出字符串 str 的边界。
要解决此问题,请修改代码以包含条件检查,以验证 lastIndex 是否为仍在 str:
String str = "helloslkhellodjladfjhello"; String findStr = "hello"; int lastIndex = 0; int count = 0; while (lastIndex != -1 && lastIndex < str.length()) { lastIndex = str.indexOf(findStr, lastIndex); if (lastIndex != -1) count++; lastIndex += findStr.length(); } System.out.println(count);
的范围内或者,您可以使用 Apache Commons Lang 中的 StringUtils.countMatches 方法库:
String str = "helloslkhellodjladfjhello"; String findStr = "hello"; System.out.println(StringUtils.countMatches(str, findStr));
此方法简化了计算子字符串出现次数的过程,并确保了高效可靠的解决方案。
以上是Java中如何高效统计子字符串出现次数?的详细内容。更多信息请关注PHP中文网其他相关文章!