码迷,mamicode.com
首页 > 其他好文 > 详细

获取指定字符串在另一个字符串中出现的次数

时间:2017-09-26 23:34:41      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:while   []   text   int   class   color   log   blog   compile   

方法一

public int count(String srcText, String findText) {  
        String[] array = srcText.split(findText);  
        return array.length - 1;  
}  

方法二

public static int count(String srcText, String findText) {  
    int count = 0;  
    Pattern p = Pattern.compile(findText);  
    Matcher m = p.matcher(srcText);  
    while (m.find()) {  
        count++;  
    }  
    return count;  
}  

方法三

public static int count(String srcText, String findText) {  
    int count = 0;  
    int index = 0;  
    while ((index = srcText.indexOf(findText, index)) != -1) {  
        index = index + findText.length();  
        count++;  
    }  
    return count;  
}

 

获取指定字符串在另一个字符串中出现的次数

标签:while   []   text   int   class   color   log   blog   compile   

原文地址:http://www.cnblogs.com/zsg88/p/7599287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!