String startsWith(String prefix, int toffset)方法

2019-10-16 22:22:21

String startsWith(String prefix, int toffset)方法判斷字串是否以指定的字首開始。

語法

以下是此方法的語法 -

public boolean startsWith(String prefix, int toffset)

引數

  • prefix - 要匹配的字首。
  • toffset - 從個索引位置開始匹配字串。

返回值

  • 如果引數字元序列是該字串字元序列的字首,則返回true; 否則返回false

範例

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.startsWith("Welcome"));

        System.out.print("Return Value :");
        System.out.println(Str.startsWith("Yiibai", 11));
    }
}

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

Return Value :true
Return Value :true