编程语言
首页 > 编程语言> > |NO.Z.00026|——————————|BigDataEnd|——|Java&核心类库.V11|----------------------------------------------|Ja

|NO.Z.00026|——————————|BigDataEnd|——|Java&核心类库.V11|----------------------------------------------|Ja

作者:互联网



[BigDataJava:Java&核心类库.V11]                                                                             [BigDataJava.核心类库][|章节二|string类中子字符串的获取|]








一、string类中子字符串的获取:方法声明
方法声明功能介绍
String substring(intbeginIndex,
int endIndex)
返回字符串中从下标beginIndex(包括)
开始到endIndex(不包括)结束的子字符串
String substring(intbeginIndex)返回字符串中从下标beginIndex(包括)
开始到字符串结尾的子字符串
### --- 案例题目

~~~     ——>        提示用户从键盘输入一个字符串和一个字符,输出该字符(不含)后面的所有子字符串。
二、编译打印
package com.yanqi.task12;

import java.util.Scanner;

public class SubStringTest {

    public static void main(String[] args) {

        // 1.构造String类型的对象并打印
        String str1 = new String("Happy Wife, Happy Life!");
        System.out.println("str1 = " + str1); // Happy Wife, Happy Life!

        // 2.获取字符串中的一部分内容并打印
        // 表示从当前字符串中下标12开始获取子字符串
        String str2 = str1.substring(12);
        System.out.println("str2 = " + str2); // Happy Life!
        // 可以取到6但是取不到10
        String str3 = str1.substring(6, 10);
        System.out.println("str3 = " + str3); // Wife

        System.out.println("---------------------------------------------------------");
        // 3.获取输入字符串中从输入字符起的子字符串内容
        System.out.println("请输入一个字符串:");
        Scanner sc = new Scanner(System.in);
        String str4 = sc.next();
        System.out.println("请输入一个字符:");
        String str5 = sc.next();
        // 从str4中查找str5第一次出现的索引位置
        int pos = str4.indexOf(str5);
        System.out.println("pos = " + pos);
        // 根据该位置获取子字符串
        String str6 = str4.substring(pos+1);
        System.out.println("获取到的子字符串是:" + str6);
    }
}
三、编译打印
D:\JAVA\jdk-11.0.2\bin\java.exe "-javaagent:D:\IntelliJIDEA\IntelliJ IDEA 2019.3.3\lib\idea_rt.jar=52271:D:\IntelliJIDEA\IntelliJ IDEA 2019.3.3\bin" -Dfile.encoding=UTF-8 -classpath E:\NO.Z.10000——javaproject\NO.H.00001.javase\javase\out\production\javase com.yanqi.task12.SubStringTest
str1 = Happy Wife, Happy Life!
str2 = Happy Life!
str3 = Wife
---------------------------------------------------------
请输入一个字符串:
123
请输入一个字符:
234
pos = -1
获取到的子字符串是:123

Process finished with exit code 0








===============================END===============================


Walter Savage Landor:strove with none,for none was worth my strife.Nature I loved and, next to Nature, Art:I warm'd both hands before the fire of life.It sinks, and I am ready to depart                                                                                                                                                   ——W.S.Landor



来自为知笔记(Wiz)

标签:类库,Java,String,v11,System,println,字符串,Happy,out
来源: https://www.cnblogs.com/yanqivip/p/16099157.html