java判斷字串是否包含某個字元的方法:
一、contains方法
#1:描述
#java .lang.String.contains() 方法傳回true,當且僅當此字串包含指定的char值序列
2:宣告
public boolean contains(CharSequence s)
3:傳回值
如果此字串包含傳回true,否則傳回false。
4:實例
public static void main(String[] args) { String str = "abc"; boolean status = str.contains("a"); if(status){ System.out.println("包含"); }else{ System.out.println("不包含"); } }
二、indexOf方法
1:描述
java.lang.String.indexOf() 的用途是在一個字符在字串中尋找一個字的位置,同時也可以判斷字串中是否包含某個字元。
2:宣告
int indexOf(int ch,int fromIndex)
3:傳回值
indexOf的回傳值為int
4:實例
public static void main(String[] args) { String str1 = "abcdefg"; int result1 = str1.indexOf("a"); if(result1 != -1){ System.out.println("字符串str中包含子串“a”"+result1); }else{ System.out.println("字符串str中不包含子串“a”"+result1); } }
更多java知識請關注java基礎教學欄。
以上是java判斷字串是否包含某個字元的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!