鱼C论坛

 找回密码
 立即注册
查看: 2710|回复: 3

[已解决]萌新求助indexOf问题

[复制链接]
发表于 2020-6-19 09:56:39 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
我想知道如何用indexOf查找2个以上的字(例如va)在字符串的位置以及出现va的次数
下面的代码只出va的位置之后出现错误。求各位大大帮助
public class Test {
    public static void main(String[] args) {

        String str = "i love java";
        int num = 0;
        for(int i = 0; i < str.length(); i++){
            if(str.substring(i,(i+2)).indexOf("va") != -1){
                System.out.println("i--> " + i);
                num++;
            }
        }

        System.out.println(num);

    }
}
最佳答案
2020-6-19 10:21:11
本帖最后由 _匆匆来也 于 2020-6-19 10:24 编辑
public class Test {
        public static void main(String[] args) {

                String str = "i love java";
                // 子串
                String s = "va";
                // 用来存储重复的次数
                int num = 0;
                // 用来存放在母串中查找子串后,子串在母串的索引值
                int index = 0;
                // 时刻判断母串能否查到子串 如果查不到,循环结束
                while((index = str.indexOf(s)) != -1)
                {
                        // 改变母串
                        // 例如在str_str_str中查找str
                        // 第一次循环后index = 0,母串就变成了_str_str
                        // 第二次循环后....省略,自行领悟
                        str = str.substring(index+s.length());
                        // 次数+1
                        num++;
                }

                System.out.println(num);

        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-6-19 10:21:11 | 显示全部楼层    本楼为最佳答案   
本帖最后由 _匆匆来也 于 2020-6-19 10:24 编辑
public class Test {
        public static void main(String[] args) {

                String str = "i love java";
                // 子串
                String s = "va";
                // 用来存储重复的次数
                int num = 0;
                // 用来存放在母串中查找子串后,子串在母串的索引值
                int index = 0;
                // 时刻判断母串能否查到子串 如果查不到,循环结束
                while((index = str.indexOf(s)) != -1)
                {
                        // 改变母串
                        // 例如在str_str_str中查找str
                        // 第一次循环后index = 0,母串就变成了_str_str
                        // 第二次循环后....省略,自行领悟
                        str = str.substring(index+s.length());
                        // 次数+1
                        num++;
                }

                System.out.println(num);

        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-19 10:21:48 | 显示全部楼层
我觉得你应该能看懂
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-6-19 10:26:57 | 显示全部楼层

简单易懂!感谢大佬帮助!终于明白了!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 18:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表