计算字符串中字符个数

public int getSubNumber(String des, String reg) {
     Pattern p = Pattern.compile(reg);
     Matcher m = p.matcher(des);
     int count = 0;//记录个数
     while(m.find()){
           count++;
     }
     return count;
}

posted on 2013-09-22 11:24  lyeoswu  阅读(205)  评论(0编辑  收藏  举报

导航