Java String substring() 方法

返回 Java Strings 类


substring() 方法有两种形式,返回一个新字符串,它是字符串对象的子字符串。 子字符串以指定索引处的字符开始,并延伸到该字符串的末尾或直到 endIndex – 1,如果给出了第二个参数。

语法

public String substring(int beginIndex)
// 或
public String substring(int beginIndex, int endIndex)

参数

  • beginIndex - 开始索引,包括在内。
  • endIndex - 结束索引,不包括在内。

返回值

返回一个截取后的子字符串。

示例

public class Main {

        public static void main(String args[]) {
            String Str = new String("Welcome to jyik.com");

            System.out.print("Return Value :" );
            System.out.println(Str.substring(10, 15) );
            
            System.out.print("Return Value :" );
            System.out.println(Str.substring(10) );
        }
}

运行示例

上面示例编译运行结果如下

Return Value : jyik
Return Value : jyik.com

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便