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

求某个字符在字符串中的第5个位置

时间:2016-01-11 18:13:54      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

String ss="2222222222";
Matcher slashMatcher1 = Pattern.compile("2").matcher(ss); int mIdx1 = 0; while (slashMatcher1.find()) { mIdx1++; if (mIdx1 == 5) { break; } } int a = slashMatcher1.start();//a就是第5个2的位置了

 

求某个字符在字符串中的第5个位置

标签:

原文地址:http://www.cnblogs.com/mcahkf/p/5121974.html

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