如何在JavaScript 中搜尋數組中的部分字串匹配
在數組中搜尋子字串匹配可能是一個挑戰,尤其是在以下情況下子字串只是數組元素中較大字串的一部分。本指南將協助您完成整個過程,使用 JavaScript 的本機方法提供簡單直接的解決方案。
問題:
給定一個字串陣列和一個子字串搜尋時,需要找出包含子字串的陣列元素,並從該元素中檢索子字串分量。
解決方案:
最簡單、最有效的方法在JavaScript 中搜尋數組中的子字串匹配是使用以下程式碼:
<code class="javascript">const array = ["item", "thing", "id-3-text", "class"]; const substring = "id-"; const result = array.findIndex(element => element.includes(substring)); if (result !== -1) { console.log(`Substring match found in element: ${array[result]}`); } else { console.log("Substring match not found."); }</code>
理解程式碼:
以上是如何在 JavaScript 陣列中尋找包含特定子字串的元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!