JAVA-中国矿业大学作业-编写程序,将字符串“你好,欢迎来到JAVA世界”对其中的“java“进行截取,输出截取字母和它在字符串中的位置

public class 欢迎来到JAVA世界 {
    public static void main(String []args)
    {
        String s1="你好,欢迎来到JAVA世界";
        int len=s1.length();
        System.out.println(String.valueOf(len));

        int startIndex = s1.indexOf("JAVA");
        int endIndex = startIndex + "JAVA".length();
        if (startIndex != -1) {
            String result = s1.substring(startIndex, endIndex);
            System.out.println(result); // Outputs: JAVA
        } else {
            System.out.println("JAVA not found in the string.");
        }

        System.out.printf("J:%d",s1.indexOf('J'));
        System.out.printf("A:%d",s1.indexOf('A'));
        System.out.printf("V:%d",s1.indexOf('V'));
        System.out.printf("A:%d",s1.lastIndexOf('A'));
    }
}

你可能感兴趣的:(python,前端,开发语言)