當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java String contains()用法及代碼示例


java.lang.String.contains()方法搜索給定字符串中的字符序列。如果在此字符串中找到char值序列,則返回true,否則返回false。
該方法的實現:

public boolean contains(CharSequence sequence)
{
   return indexOf(sequence.toString()) > -1;
}

在這裏,將CharSequence轉換為String,然後調用indexOf方法。如果找到字符串,則indexOf方法返回O或更高的數字,否則返回-1。因此,執行後,如果存在char值序列,則contains()方法將返回true,否則返回false。句法:

public boolean contains(CharSequence sequence)
參數:sequence:This is the sequence of 
characters to be searched.
Exception:
NullPointerException:If seq is null

例:檢查charSequence是否存在。


// Java program to demonstrate working 
// contains() method 
class Gfg { 
  
    // Driver code 
    public static void main(String args[]) 
    { 
        String s1 = "My name is GFG"; 
  
        // prints true 
        System.out.println(s1.contains("GFG")); 
  
        // prints false 
        System.out.println(s1.contains("geeks")); 
    } 
}
輸出:
true
false

例:區分大小寫的方法,用於檢查給定的CharSequence是否存在。

// Java code to demonstrate case 
// sensitivity of contains() method 
class Gfg1 { 
  
    // Driver code 
    public static void main(String args[]) 
    { 
        String s1 = "Welcome! to GFG"; 
  
        // prints false 
        System.out.println(s1.contains("Gfg")); 
  
        // prints true 
        System.out.println(s1.contains("GFG")); 
    } 
}
輸出:
false
true

進一步的想法:

  • 此方法不適用於搜索字符。
  • 如果不存在該字符串的索引,則此方法找不到。
  • 對於以上兩個函數,有一個更好的函數String indexOf


相關用法


注:本文由純淨天空篩選整理自Niraj_Pandey大神的英文原創作品 Java String contains() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。