会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
心若不动,风又奈何;你若不伤,岁月无恙。
博客园
首页
博问
闪存
新随笔
订阅
管理
Java中判断字符串中相同字符的个数
public
static
int countStr(String str1, String str2) {
int counter=
0;
if (str1.indexOf(str2) == -
1) {
return
0;
}
while(str1.indexOf(str2)!=-
1){
counter++;
str1=str1.substring(str1.indexOf(str2)+str2.length());
}
return counter;
}
posted on
2015-10-16 11:05
风又奈何
阅读(
4695
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部