gpt4 book ai didi

javascript - 如何在javascript正则表达式中匹配精确的字符串

转载 作者:行者123 更新时间:2023-11-27 23:35:44 25 4
gpt4 key购买 nike

我的 JavaScript 正则表达式是

/\[DEF\]([^\[\]]+)\[\/DEF\]/g  

我的字符串是

[DEF]sdgsdggsFfg sdgsdg[/DEF]

我想检查我的正则表达式,中间的[/DEF]没有出现,我该怎么办。

当我将此正则表达式修改为 /\[DEF\]([^\[\/DEF]]+)\[\/DEF\]/g但在正则表达式中它匹配单个字符,例如 D、E 或 F 我想将其与精确的 [/DEF]

匹配

我能为它做什么。

最佳答案

这是简单的正则表达式:

/\[DEF\]([\s\S]*?)\[\/DEF\]/g

使其不区分大小写(def instaead of DEF)

/\[DEF\]([\s\S]*?)\[\/DEF\]/gi

你也可以做一个简单的:

/\[DEF\](.*?)\[\/DEF\]/

但它只支持 1 次出现,并且不支持多行匹配。

当我看到你的字符串时: /\[DEF\]([^\[\/DEF]]+)\[\/DEF\]/g 看起来你没有知道.*是什么意思吗?

The question mark after * makes it ungreedy. If you leave it out, itwill match everything between the first WORD1 and the last WORD2 whereif you have multiple occurences of WORD2 the ungreedy operator willonly match until the first WORD2http://forums.phpfreaks.com/topic/265751-how-does-it-work/

##示例

var source = 'Exampe Source[DEF]my source[/DEF]'
document.write(source + '<br>')
alert('Source: ' + source)
var match = source.match(/\[DEF\]([\s\S]*?)\[\/DEF\]/g)
alert('Match:' + match)
document.write(match + '<br>')

关于javascript - 如何在javascript正则表达式中匹配精确的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34155008/

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