substring() 方法返回字符串的子字符串??梢岳斫鉃樽址衅?。
語法
public String substring(int beginIndex)
或
public String substring(int beginIndex, int endIndex)
參數(shù)
-
beginIndex -- 起始索引(包括)。
-
endIndex -- 結(jié)束索引(不包括)。
注意:這兩個參數(shù)都為int類型
返回值
子字符串。
實例
public class Test {
public static void main(String args[]) {
String Str = new String("m.hgci.cn");
System.out.print("返回值 :" );
System.out.println(Str.substring(4) );
System.out.print("返回值 :" );
System.out.println(Str.substring(4, 13) );
}
}
以上程序執(zhí)行結(jié)果為:
返回值 :w3cschool.cn
返回值 :w3cschool
更多建議: