java中怎么判断字符串中包含字符个数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中怎么判断字符串中包含字符个数相关的知识,希望对你有一定的参考价值。

/*
* Email:97163017@qq.com
*/
public int countChar(String str,char ch) 
    // 将字符串转换为字符数组
    char[] chs = str.toCharArray();
    // 定义变量count存储字符串出现次数
    int count = 0;
    for(int i = 0;i < chs.length;i++) 
        if(chs[i] == ch) 
        count++;
        
    
    return count;

 如果要知道字符个数,也就是字符串长度。直接调用length()方法即可。

参考技术A

绝对原创!  网上都是用indexOf方式,效率和内存性能低下!

采用正则表达式技术,简单实现:

public static void main(final String[] args)

final String input = "This is captain's instruction!";

final int result = countInnerStr(input, "i");

System.out.println(String.format("Found: %d", result));


public static int countInnerStr(final String str, final String patternStr)

int count = 0;

final Pattern r = Pattern.compile(patternStr);

final Matcher m = r.matcher(str);

while (m.find())

count++;

return count;


输出:

Found: 5

本回答被提问者采纳
参考技术B string类型的有方法,length方法可以得到字符个数
String s="asodad";
System.out.println(s.length());输出是6

以上是关于java中怎么判断字符串中包含字符个数的主要内容,如果未能解决你的问题,请参考以下文章

在JAVA中,键盘输入的字符串中包含的字母、数字和其他字符的个数如何制作?

在java中输入一个数,判断并输出这个数中包含的奇数,偶数和零数字的个数

怎么判断string字符串中包含某个字符

java中怎么判断一个字符串中包含某个字符或字符串

java如何返回一个字符串中包含某字符的个数?

java中怎么判断一个字符串数组中包含某个字符或字符串