String 類別可以用來表示字串,Java程式中的所有字串文字都是作為一個實例實現的一個字串類別。字串是常數,它們的值一旦創建就無法更改(不可變)。
我們可以使用startsWith( String 類別的) 方法檢查字串是否以特定字串開頭,它傳回一個布林值, true 或false 。
語法public boolean startsWith(String prefix)
public class StringStartsWithSubStringTest { public static void main(String[] args) { String str = "WelcomeToTutorialsPoint"; if(str.startsWith("<strong>Welcome</strong>")) { System.out.println("Begins with the specified word!"); } else { System.out.println("Does not begin with the specified word!"); } } }
Begins with the specified word!
以上是如何在Java中檢查字串是否以特定子字串開頭?的詳細內容。更多資訊請關注PHP中文網其他相關文章!