首頁  >  文章  >  Java  >  java中怎麼截取字串前幾位

java中怎麼截取字串前幾位

尚
原創
2019-11-21 13:38:4719883瀏覽

java中怎麼截取字串前幾位

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn