這篇文章將為大家詳細講解有關java判斷字符串是否包含指定字符的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
網(wǎng)站建設哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、小程序設計、集團企業(yè)網(wǎng)站建設等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了北川羌族免費建站歡迎大家使用!
一、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判斷字符串是否包含指定字符的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。