使用JavaScript 陣列尋找字串中的子字串
為了判斷字串是否包含陣列中的任何子字串,JavaScript提供了靈活的方法.
Array Some Method
some 方法迭代數組,提供回調函數來測試每個元素。若要檢查子字串,請使用indexOf() 方法搜尋字串中的每個陣列元素:
<code class="js">if (substrings.some(function(v) { return str.indexOf(v) >= 0; })) { // There's at least one substring match }</code>
正規表示式
正規表示式提供了一種強大的方法來匹配文字模式。若要搜尋字串中陣列中的任何子字串,請建立一個將所有子字串作為備用選項的正規表示式,並使用test() 方法:
<code class="js">const regex = new RegExp(substrings.join("|")); if (regex.test(str)) { // At least one substring matches }</code>
範例
讓我們考慮一個子字串數組:
<code class="js">const substrings = ["one", "two", "three"];</code>
有子字串匹配的字串
<code class="js">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("|")));</code>
沒有子字串匹配的字串
<code class="js">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("|")));</code>
結果
Test Method | String with Match | String without Match |
---|---|---|
Array some | someMethodMatch = true | someMethodNoMatch = false |
Regular expression | regexMatch = true | regexNoMatch = null |
以上是如何在 JavaScript 中檢查字串是否包含數組中的任何子字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!