Java 字符串 subSequence() 方法返回一个字符序列,该序列是给定字符串的子序列。
语法
public CharSequence subSequence(int beginIndex,
int endIndex)
参数
beginIndex | 指定开始索引(含)。 |
endIndex | 指定结束索引(不包括)。 |
返回值
返回给定字符串子序列的字符序列。
异常
如果 beginIndex 或 endIndex 为负数,如果 endIndex 大于 length(),或者如果 beginIndex 大于 endIndex 则 抛出IndexOutOfBoundsException 异常。
示例:
在下面的示例中,subSequence () 方法用于从给定的名为 MyString 的字符串中获取字符序列。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
String MyString = "Hello World";
System.out.println(MyString.subSequence(0, 5));
}
}
上述代码的输出将是:
Hello