java中可以使用substring()方法截取字串前幾位。
substring() 方法傳回字串的子字串。
語法:
public String substring(int beginIndex)
或
public String substring(int beginIndex, int endIndex)
參數:
beginIndex -- 起始索引(包含), 索引從 0 開始。
endIndex -- 結束索引(不包括)。
傳回值
子字串。
範例:
public class Test { public static void main(String args[]) { String Str = new String("www.php.cn"); System.out.print("返回值 :" ); System.out.println(Str.substring(4) ); System.out.print("返回值 :" ); System.out.println(Str.substring(4, 10) ); } }
更多java知識請關注java基礎教學。
以上是java中怎麼截取字串前幾位的詳細內容。更多資訊請關注PHP中文網其他相關文章!