在Java中,startsWith()方法用于檢查字符串是否以指定的前綴開頭。該方法的用法如下:
public boolean startsWith(String prefix)
參數:
返回值:
示例:
String str = "Hello, World!";
System.out.println(str.startsWith("Hello")); // true
System.out.println(str.startsWith("He")); // true
System.out.println(str.startsWith("ello")); // false
在上面的示例中,字符串"Hello, World!"以"Hello"和"He"開頭,但不以"ello"開頭。因此,startsWith()方法分別返回true、true和false。