Java String substring()方法

2019-10-16 22:22:24

Java String substring()方法有兩個變體,它返回該字串的子字串。 子字串以指定索引處的字元開頭,並且如果給出第二個引數,則擴充套件到此字串的末尾或最多為endIndex - 1索引處之間的字元。

語法

以下是此方法的語法 -

public String substring(int beginIndex)

引數

  • beginIndex - 開頭索引(包括)。

返回值

  • 指定的子字串。

範例

public class Test {

    public static void main(String args[]) {
        String Str = new String("Welcome to Tw511.com");

        System.out.print("Return Value :");
        System.out.println(Str.substring(11, 17));

    }
}

執行上面範例程式碼,得到以下結果:

Return Value :Yiibai