作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从“string[0][inner_string]”中提取
0
和inner_string
我的方法使用lookbehind和looahead零长度断言。
这是正则表达式:
+--- Look ahead
|
v
/(?<=\[)(.*?)(?=\])/g
^
|
+--- Look behind
var str = "string[0][inner_string]";
console.log(str.match(/(?<=\[)(.*?)(?=\])/g));
但是,我收到错误。
使用环视可以吗?
最佳答案
引自 @ctwheels:“Lookbehinds 在 JavaScript 中几乎没有支持 ( see the current stage of the TC39 proposal )。在撰写本文时,只有 Chrome(从版本 62 开始)和 Moddable(2018 年 1 月 17 日之后) ) 支持 JavaScript 中的lookbehinds。”
正则表达式:\[([^\]]+)\]
str = 'string[0][inner_string]'
re = /\[([^\]]+)\]/g
while(match = re.exec(str)) {
console.log(match[1])
}
关于javascript - 如何使用后向和前向零长度断言提取括号内的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49080541/
我是一名优秀的程序员,十分优秀!