Java中的substring()方法用于从字符串中提取子字符串。它有两个重载的方法:
- public String substring(int beginIndex):返回从指定索引位置开始(包括该索引位置)到字符串末尾的子字符串。
- public String substring(int beginIndex, int endIndex):返回从指定的beginIndex开始(包括该索引位置)到指定的endIndex结束(不包括该索引位置)之间的子字符串。
下面是一些使用substring()方法的示例:
String str = "Hello World";
String sub1 = str.substring(6);
String sub2 = str.substring(0, 5);
注意事项:
- 字符串的索引位置从0开始。
- endIndex参数是可选的,如果不提供该参数,则substring()方法将从beginIndex开始提取子字符串到字符串的末尾。
- 如果提供的索引位置超出了字符串的长度范围,将会抛出IndexOutOfBoundsException异常。