作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
a [1] => abc [2] => zzzz 我试过下面的代码: var string = -6ren">
我有以下字符串:
[a] [abc] test [zzzz]
我正在尝试获取这样的数组:
[0] => a
[1] => abc
[2] => zzzz
我试过下面的代码:
var string = '[a] [abc] test [zzzz]';
var matches = string.match(/\[(.*?)\]/g);
for(var i = 0; i < matches.length; i++)
console.log(matches[i]);
但我的控制台输出显示:
[a]
[abc]
[zzzz]
我尝试添加两个非捕获组 (?:
),如下所示:
var matches = string.match(/(?:\[)(.*?)(?:\])/g);
但我看到相同的匹配项,没有变化。
出了什么问题,我怎样才能得到我想要的数组?
最佳答案
match
不捕获全局匹配中的组。为此,我做了一个小 helper 。
String.prototype.gmatch = function(regex) {
var result = [];
this.replace(regex, function() {
var matches = [].slice.call(arguments,1,-2);
result.push.apply(result, matches);
});
return result;
};
像这样使用它:
var matches = string.gmatch(/\[(.*?)\])/g);
关于javascript - 如何在 "["这样的匹配中排除 "]"和 "[abc]"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16631299/
我是一名优秀的程序员,十分优秀!