当前位置: 代码迷 >> J2ME >> 字符串中字符的统计题解决思路
  详细解决方案

字符串中字符的统计题解决思路

热度:7371   发布时间:2013-02-25 21:38:35.0
字符串中字符的统计题
统计字符串中,字符出现的个数。
比如:aaaabbbsss,统计aa出现的个数
注意相同字符连续出现的情况。用java写出来

------解决方案--------------------------------------------------------
for example
Java code
String s = "aaaabbbsss";Pattern p = Pattern.compile("[a]{2}");Matcher m = p.matcher(s);int count = 0;while (m.find()) {    count++;}System.out.println(count);
  相关解决方案