Java String substring()方法
描述
这个方法有两个变体,并返回一个新的字符串,它是这个字符串的子串。子串从指定索引处的字符开始,并延伸到这个字符串的末尾,或者到endIndex – 1,如果给定了第二个参数。
语法
这个方法的语法如下 −
public String substring(int beginIndex)
参数
下面是参数的详细信息 –
- beginIndex - 开始索引,包括。
返回值
- 指定的子字符串。
示例
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tutorialspoint.com");
System.out.print("Return Value :" );
System.out.println(Str.substring(10) );
}
}
这将产生以下结果−
输出
Return Value : Tutorialspoint.com