扫码一下
查看教程更方便
subSequence() 这个方法返回一个新的字符序列,它是这个序列的子序列。
public CharSequence subSequence(int beginIndex, int endIndex)
此方法返回指定的子序列。
public class Main { public static void main(String args[]) { String Str = new String("Welcome to jiyik.com"); System.out.print("Return Value :" ); System.out.println(Str.subSequence(0, 10) ); System.out.print("Return Value :" ); System.out.println(Str.subSequence(10, 15) ); } }
上面示例编译运行结果如下
Return Value :Welcome to
Return Value : jiyi