可以通过indexOf(String str, int fromIndex),先从0号位开始查找,查到返回并打印,
然后fromIndex++,跳到下一个开始读取位置,一直循环到indexOf返回-1
- public class Test {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- int index = 0;
- String str = "supser sutring";
- while((index = str.indexOf("s", index))!=-1)
- {
- System.out.println(index);
- index++;
- }
-
- }
- }
复制代码 |