JavaScript 中不區分大小寫的字串比較

Valentine Kagwiria 2023年1月30日 2021年2月7日
  1. 在 JavaScript 中使用 toUpperCase()/toLowerCase() 字串方法進行大小寫不敏感的比較
  2. 在 JavaScript 中使用 localeCompare() 字串方法進行大小寫不敏感的比較
  3. 在 JavaScript 中使用正規表示式方法 RegExp 進行大小寫不敏感的比較
JavaScript 中不區分大小寫的字串比較

本文介紹瞭如何在 JavaScript 中進行不區分大小寫的字串比較。

在 JavaScript 中使用 toUpperCase()/toLowerCase() 字串方法進行大小寫不敏感的比較

toUpperCase() 方法中,首先將字串轉換為大寫或小寫,然後用三等式運算子 === 進行比較。

下面是一個例子。

var stringA = "This is a JavaScript tutorial";
var stringB = "THIS is A javascript TUTORIAL";

if (stringA.toUpperCase() === stringB.toUpperCase()){
    alert("The strings are equal.")
} else {
    alert("The strings are NOT equal.")
}

輸出:

The strings are equal.

或者,你也可以使用 toLowercase() 字串方法將字串轉換為小寫,如下例所示。

var stringA = "This is a JavaScript tutorial";
var stringB = "THESE are javascript TUTORIALS";

if (stringA.toLowerCase() === stringB.toLowerCase()){
    alert("The strings are equal.")
} else {
    alert("The strings are NOT equal.")
}

輸出:

The strings are NOT equal

但值得注意的是,大寫法是首選。這是因為字母表中的一些字元在轉換為小寫時不能進行往返。這本質上意味著,它們可能無法以準確表示該資料字元的方式從一個 locale 轉換到另一個 locale。

在 JavaScript 中使用 localeCompare() 字串方法進行大小寫不敏感的比較

雖然上面的方法給出了一個簡單的答案,但當字串中包含 Unicode 字元時,它可能無法正常工作。localeCompare 字串方法可以解決這個問題。它與 sensitivity: 'base'選項一起使用,以捕獲所有 Unicode 字元。例如,我們可以在 if() 語句中使用該方法,以獲得相關字串相等和不相等的結果。

if( 'javascript'.localeCompare('JavaScrpt', undefined, { sensitivity: 'base' }) ==0){
alert("The strings are equal")
} else{
alert("The strings are different.")
}

輸出:

The strings are different.

在 JavaScript 中使用正規表示式方法 RegExp 進行大小寫不敏感的比較

在這個方法中,我們使用 RegExp 模式和 test() 方法來進行不區分大小寫的字串比較。例如:

const strA = 'This is a case sensitive comparison';
const strB = 'This is a CASE SENSITIVE comparison';
const regex = new RegExp(strA, "gi");
const comparison = regex.test(strB)

if(comparison) {
    alert('Similar strings');
} else {
    alert('Different strings');
}

輸出:

Similar strings

相關文章 - JavaScript String