在 Java 中檢查字串是否包含不區分大小寫的子串

Mohammad Irfan 2023年10月12日
  1. 在 Java 中的字串中查詢不區分大小寫的子字串
  2. 在 Java 中使用 StringUtils 在字串中查詢不區分大小寫的子字串
  3. 在 Java 中使用 contains() 方法查詢字串中不區分大小寫的子字串
  4. 在 Java 中使用 matches() 方法查詢字串中不區分大小寫的子字串
在 Java 中檢查字串是否包含不區分大小寫的子串

本教程介紹如何在 Java 中檢查或查詢字串是否包含子字串。

String 是一個字元序列,有時也稱為字元陣列。在 Java 中,String 是一個處理所有與字串相關的操作並提供實用方法的類。

本文演示如何在字串中查詢子字串。

子字串是字串的一部分,也是字串。它可以有一個或多個字元。

不區分大小寫的字串是不關心字母的小寫或大寫的字串。讓我們通過一些例子來理解。

在 Java 中的字串中查詢不區分大小寫的子字串

在這個例子中,我們使用了 Pattern 類及其 compile()matcher()find() 方法來檢查字串是否包含子字串。我們使用了 CASE_INSENSITIVE,它返回一個布林值,truefalse

請參見下面的示例。

import java.util.regex.Pattern;

public class SimpleTesting {
  public static void main(String[] args) {
    String str = "DelftStack";
    String strToFind = "St";
    System.out.println(str);
    boolean ispresent =
        Pattern.compile(Pattern.quote(strToFind), Pattern.CASE_INSENSITIVE).matcher(str).find();
    if (ispresent)
      System.out.println("String is present");
    else
      System.out.println("String not found");
  }
}

輸出:

DelftStack
String is present

在 Java 中使用 StringUtils 在字串中查詢不區分大小寫的子字串

使用 Apache 公共庫,你可以使用 StringUtils 類及其 containsIgnoreCase() 方法來查詢子字串。請參見下面的示例。

你必須將 Apache 公共 JAR 新增到你的專案中才能執行此程式碼。

import org.apache.commons.lang3.StringUtils;

public class SimpleTesting {
  public static void main(String[] args) {
    String str = "DelftStack";
    String strToFind = "St";
    System.out.println(str);
    boolean ispresent = StringUtils.containsIgnoreCase(str, strToFind);
    if (ispresent)
      System.out.println("String is present");
    else
      System.out.println("String not found");
  }
}

輸出:

DelftStack
String is present

在 Java 中使用 contains() 方法查詢字串中不區分大小寫的子字串

在這個例子中,我們使用了 String 類的 contains() 方法,如果子字串存在則返回 true。我們使用 toLowerCase() 首先將所有字元轉換為小寫,然後傳遞給 contains() 方法。

請參見下面的示例。

public class SimpleTesting {
  public static void main(String[] args) {
    String str = "DelftStack";
    String strToFind = "St";
    System.out.println(str);
    boolean ispresent = str.toLowerCase().contains(strToFind.toLowerCase());
    if (ispresent)
      System.out.println("String is present");
    else
      System.out.println("String not found");
  }
}

輸出:

DelftStack
String is present

在 Java 中使用 matches() 方法查詢字串中不區分大小寫的子字串

在這個例子中,我們使用了 String 類的 matches() 方法,如果子字串存在則返回 true。它將正規表示式作為引數。

請參見下面的示例。

public class SimpleTesting {
  public static void main(String[] args) {
    String str = "DelftStack";
    String strToFind = "St";
    System.out.println(str);
    boolean ispresent = str.matches("(?i).*" + strToFind + ".*");
    if (ispresent)
      System.out.println("String is present");
    else
      System.out.println("String not found");
  }
}

輸出:

DelftStack
String is present

相關文章 - Java String