API有写.
- substring
- public String substring(int beginIndex)返回一个新的字符串,它是此字符串的一个子字符串。该子字符串从指定索引处的字符开始,直到此字符串末尾。
- 示例:
- "unhappy".substring(2) returns "happy"
- "Harbison".substring(3) returns "bison"
- "emptiness".substring(9) returns "" (an empty string) <---关注!!!
-
- 参数:
- beginIndex - 起始索引(包括)。
- 返回:
- 指定的子字符串。
- 抛出:
- IndexOutOfBoundsException - 如果 beginIndex 为负或大于此 String 对象的长度。
复制代码 |