查找字符串中的子字符串数目
摘要:
public int getSubCount(String Content, String Sub) { int Count=0; if(Sub.length()!=0){ Count = Content.length(); Content = Content.replaceAll... 阅读全文
posted @ 2010-08-04 20:43
tongdengquan
阅读(291)
评论(0)
推荐(0)