gpt4 book ai didi

javascript - 从 javascript 正则表达式对象获取组列表

转载 作者:行者123 更新时间:2023-12-03 10:11:44 25 4
gpt4 key购买 nike

可以从正则表达式对象中获取组项目列表吗?例如,我有这个正则表达式:

var someRegex = /hello\s(.*?), i have (\d+) friends! (?:Bye)/;

我希望能够得到:

['(.*?)', '(\\d+)'];

(请注意,我不想获得“再见”组,因为它有“?:”标记..)

谢谢!

最佳答案

\((?!\?:)[^(]*\)

试试这个。查看演示。

https://regex101.com/r/bN8dL3/7

var re = /\((?!\?:)[^(]*\)/gi;
var str = 'hello\s(.*?), i have (\d+) friends! (?:Bye)';
var m;

while ((m = re.exec(str)) !== null) {
if (m.index === re.lastIndex) {
re.lastIndex++;
}
// View your result using the m-variable.
// eg m[0] etc.
}

关于javascript - 从 javascript 正则表达式对象获取组列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30075569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com