在Java中,substring方法是用于从字符串中提取子字符串的方法。它有两种重载的形式:
substring(int beginIndex)
:返回从指定索引开始到字符串末尾的子字符串。substring(int beginIndex, int endIndex)
:返回从指定索引开始到指定索引结束的子字符串。下面是两种使用方式的示例:
substring(int beginIndex)
方法:String str = "Hello, World!";
String subStr = str.substring(7); // 从索引7开始提取子字符串
System.out.println(subStr); // 输出 "World!"
substring(int beginIndex, int endIndex)
方法:String str = "Hello, World!";
String subStr = str.substring(7, 12); // 从索引7开始到索引12结束提取子字符串
System.out.println(subStr); // 输出 "World"
需要注意的是,索引是从0开始的,所以第一个字符的索引为0,最后一个字符的索引为字符串长度减1。如果指定的索引超出了字符串的范围,将会抛出IndexOutOfBoundsException
异常。