如何使用 Regex 群組 Posted on 2022-05-22 Edited on 2024-11-09 In Javascript Word count in article: 58 Reading time ≈ 1 mins. 使用 Regex 群組 群組方法用法如下 12345678// 建立規則var myRegexp = /(?<群組名稱>.*)Test/g;// 執行規則var match = myRegexp.exec('123Test');// 取得執行結果 output: 123console.log(match.groups.群組名稱); 📜 參考資料 MDN