使用JavaScript 陣列尋找字串中的子字串
為了確定字串是否包含陣列中的任何子字串,JavaScript提供了靈活的方法.
Array Some Method
some 方法迭代數組,提供回調函數來測試每個元素。若要檢查子字串,請使用indexOf() 方法搜尋字串中的每個陣列元素:
if (substrings.some(function(v) { return str.indexOf(v) >= 0; })) {
// There's at least one substring match
}
正規表示式
正規表示式提供了一個符合文字模式的強大方法。若要搜尋字串中陣列中的任何子字串,請建立一個將所有子字串作為備用選項的正規表示式,並使用test() 方法:
const regex = new RegExp(substrings.join("|"));
if (regex.test(str)) {
// At least one substring matches
}
範例
範例const substrings = ["one", "two", "three"];
讓我們考慮一個子字串陣列:const substrings = ["one", "two", " Three "];
const str = "This string includes \"one\".";
// Using array some method
const someMethodMatch = substrings.some(v => str.includes(v));
// Using regular expression
const regexMatch = str.match(new RegExp(substrings.join("|")));
const str = "該字串包含\"一個\"。" ; // 使用陣列的一些方法 const someMethodMatch = substrings.some(v => str.includes(v)); // 使用正規表示式 const regexMatch = str.match(new RegExp(substrings.join("|")));
const str = "This string doesn't have any substrings.";
// Using array some method
const someMethodNoMatch = substrings.some(v => str.includes(v));
// Using regular expression
const regexNoMatch = str.match(new RegExp(substrings.join("|")));
const str = "該字串沒有任何子字串。"; // 使用陣列的一些方法 const someMethodNoMatch = substrings.some(v => str.includes(v)); // 使用正規表示式 const regexNoMatch = str.match(new RegExp(substrings.join("|")));
測試測試方法 | ||
---|---|---|
Array some | ||
someMethodNoMatch = false | 正規表示式 |
&&&&]
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3