gpt4 book ai didi

javascript - 我可以使用什么正则表达式来查找简单的正则表达式

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

如果我有一个字符串,它是正则表达式的来源:

"For example, I have (.*) string with (\.d+) special bits (but this is just an aside)."

有没有办法提取正则表达式的特殊部分?

特别是,我对调用 string.match(expr);

时返回值的部分感兴趣

最佳答案

正则表达式可能很复杂,但如果您使用 ([\.\\]([*a-z])\+?) 执行全局正则表达式,它将捕获您的各个字段而不包括根据您的要求加上括号。演示代码放在this fiddle 也在下面。

var testString = 'For example, I have (.*) string with (.d+) special bits (but this is just an aside). (\\w+)';
var regex = /([\.\\]([*a-z])\+?)/gi;

var matches_array = testString.match(regex);

//Outputs the following: [".*", ".d+", "\w+"]

关于javascript - 我可以使用什么正则表达式来查找简单的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33790103/

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