作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 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/
我是一名优秀的程序员,十分优秀!