正则表达式匹配获取指定内容

有一个字符串

var str = '//@(test/js/index.js); //@(tass/js/inde.js); //@(tab/jsx/ind.jsx); 11230120 ;// var a = 22';';

我用 var reg = /(\/\/\@\()(\S*?)(\))/g ;
结果是这样的
clipboard.png

有没有一个正则匹配的规则;能获取到这样的结果

['test/js/index.js','tass/js/inde.js','tab/jsx/ind.jsx]
阅读 8.5k
4 个回答

/(?:@\()([^)]*)/g 测试地址

const regex = /(?:@\()([^)]*)/g;
const str = `//@(test/js/index.js); //@(tass/js/inde.js); //@(tab/jsx/ind.jsx); 11230120 ;// var a = 22';`;
let m;

while ((m = regex.exec(str)) !== null) {
    // This is necessary to avoid infinite loops with zero-width matches
    if (m.index === regex.lastIndex) {
        regex.lastIndex++;
    }
    
    // The result can be accessed through the `m`-variable.
    m.forEach((match, groupIndex) => {
        console.log(`Found match, group ${groupIndex}: ${match}`);
    });
}
const reg = /[a-z]+\/jsx?\/inde?x?\.js/g,
    str = '//@(test/js/index.js); //@(tass/js/inde.js); //@(tab/jsx/ind.jsx); 11230120 ;// var a = 22';
    
str.match(reg);
/\(([^)]+)/g
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题