在Java中,contains
方法用于檢查一個字符串是否包含指定的字符序列。它是String
類的方法,用于判斷字符串中是否包含某個子字符串。
contains
方法的用法如下:
String str = "Hello, world!";
boolean result = str.contains("world");
上述代碼中,contains
方法用于檢查字符串str
是否包含子字符串"world"。如果包含,則返回true
;否則,返回false
。
contains
方法非常實用,特別是在需要查找某個關鍵字是否在一個字符串中出現的情況下。它可以用于搜索、過濾、匹配等操作,方便我們對字符串進行處理。