文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>java text2

java text2

时间:2010-10-16  来源:大眼儿

编写一个方法,输出在一个字符串中,指定字符串出现的次数。 substring()方法: import java.util.Scanner;

public class Count
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入字符串:");
        String str = sc.nextLine();
        System.out.println("请输入指定字符串:");
        String st = sc.nextLine();

        int n = 0;
        for (int i = 0; i <= str.length() - st.length(); i++)
        {
            if (str.substring(i,i+st.length()).equals(st))
            {
                n++;
                i = i+st.length()-1;
            }

        }
        System.out.println("指定字符串出现次数:" + n);
    }
}

 

 

 

 

indexOf()方法:

 

import java.util.Scanner;

public class Count2
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入字符串:");
        String str = sc.nextLine();
        System.out.println("请输入指定字符串:");
        String st = sc.nextLine();

        int n = 0, i = 0;
        
        while (i < str.length() - st.length() + 1)
        {
            i = str.indexOf(st, i) + st.length();
            n++;
        }
        System.out.println("指定字符串出现次数:" + n);
    }
}

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载