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