扫码一下
查看教程更方便
substring() 方法有两种形式,返回一个新字符串,它是字符串对象的子字符串。 子字符串以指定索引处的字符开始,并延伸到该字符串的末尾或直到 endIndex – 1,如果给出了第二个参数。
public String substring(int beginIndex)
// 或
public String substring(int beginIndex, int 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