在Java中,可以使用startsWith()
方法來檢查一個(gè)字符串是否以特定的子字符串開頭。示例如下:
String str = "Hello World";
if(str.startsWith("Hello")) {
System.out.println("String starts with 'Hello'");
} else {
System.out.println("String does not start with 'Hello'");
}
上述代碼將輸出:
String starts with 'Hello'
如果字符串以特定子字符串開頭,則startsWith()
方法返回true
;否則返回false
。