Java String subSequence()
方法返回一個新的字元序列,該序列是此序列的子序列。
語法
以下是此方法的語法 -
public CharSequence subSequence(int beginIndex, int endIndex)
beginIndex
- 開始的索引位置(包含)。endIndex
- 結束的索引位置(不包含)。public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tw511.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 : Yiib