java中判斷乙個String字串中包含某個字段

2021-08-28 03:14:04 字數 637 閱讀 1398

1.判斷string字串中包含某個字段

① indexof()方法

public static void main(string args)
如果包含,輸出這個字串在陣列中的索引(如果有重複的,則輸出第一次出現的索引位置);否則輸出-1。

② contains()方法

public static void main(string args)
如果包含,輸出true;否則輸出false。

注:contains()方法的底層實現還是indexof()方法!

2.判斷string陣列中是否包含某個字串

① contains()方法

public static void main(string args)
如果包含,輸出true;否則輸出false。

② indexof()方法

public static void main(string args)
如果包含,輸出這個字串在陣列中的索引(比如此例輸出2);否則輸出-1。

希望對大家有所幫助。

Java中判斷String不為空

一 判斷乙個字串str不為空的方法有 1.str null 2.equals str 3.str.length 0 注意 length是屬性,一般集合類物件擁有的屬性,取得集合的大小。例如 陣列.length就是取得陣列的長度。length 是方法,一般字串類物件有該方法,也是取得字串長度。例如 字...

乙個關於String型別判斷的問題

string starttime string endtime 判斷時間條件 if starttime null equals starttime endtime null equals endtime else if starttime null equals starttime endtime ...

java中如何判斷String中的內容是否為數字

判斷字串是否是整數 public static boolean isinteger string value catch numberformatexception e 判斷字串是否是浮點數 public static boolean isdouble string value catch numb...