如何判斷一個字串包含了另外一個字串
這題有點簡單,對吧?上一道還用Stream 流,這題就直接送分了?不用懷疑自己,就用字串類別的contains() 方法。
public class StringContainsSubstring { public static void main(String[] args) { String s1 = "沉默王二"; String s2 = "沉默"; System.out.println(s1.contains(s2)); } }
輸出結果如下:
true
contains() 方法內部其實呼叫的是 indexOf() 方法:
public boolean contains(CharSequence s) { return indexOf(s.toString()) >= 0; }
以上是Java如何判斷一個字串包含了另外一個字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!