java查找字符串中指定字符个数
Posted xiejunna
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java查找字符串中指定字符个数相关的知识,希望对你有一定的参考价值。
/**
* 查询字符串中指定字符个数
* @param oriStr 原字符串
* @param findStr 需要查找的字符
* @param count 固定值:0
* @return 查找到字符的个数
*/
public static int findStrCount(String oriStr, String findStr, int count)
if (oriStr.contains(findStr))
count++;
count = findStrCount(oriStr.substring(oriStr.indexOf(findStr) + findStr.length()), findStr, count);
return count;
以上是关于java查找字符串中指定字符个数的主要内容,如果未能解决你的问题,请参考以下文章
【实例】用PowerQuery计算字符串中指定字符个数的两种方法