JavaScript相当于Ruby的String#scan

时间:2012-12-15 19:21:34

标签: javascript ruby regex

这是否存在?

我需要解析一个字符串,如:

the dog from the tree

并获得类似

的内容
[[null, "the dog"], ["from", "the tree"]]

我可以在Ruby中使用一个RegExp和String#scan

JavaScript String#match无法处理此问题,因为它只返回RegExp匹配的内容而不是捕获组,因此返回类似

的内容
["the dog", "from the tree"]

因为我在Ruby应用程序中多次使用String#scan,所以如果有一种快速的方法可以在我的JavaScript端口中复制这种行为,那就太好了。

编辑:这是我正在使用的RegExp:http://pastebin.com/bncXtgYA

3 个答案:

答案 0 :(得分:12)

String.prototype.scan = function (re) {
    if (!re.global) throw "ducks";
    var s = this;
    var m, r = [];
    while (m = re.exec(s)) {
        m.shift();
        r.push(m);
    }
    return r;
};

答案 1 :(得分:5)

这是使用String.replace的另一个实现:

String.prototype.scan = function(regex) {
    if (!regex.global) throw "regex must have 'global' flag set";
    var r = []
    this.replace(regex, function() {
        r.push(Array.prototype.slice.call(arguments, 1, -2));
    });
    return r;
}

工作原理:replace将在每次匹配时调用回调,并将匹配的子字符串,匹配的组,偏移量和完整字符串传递给它。我们只想要匹配的组,所以我们slice除了其他参数。

答案 2 :(得分:1)

只有在指定了捕获组时,

ruby​​的scan()方法才会返回嵌套数组。 http://ruby-doc.org/core-2.5.1/String.html#method-i-scan

a = "cruel world"
a.scan(/\w+/)        #=> ["cruel", "world"]
a.scan(/.../)        #=> ["cru", "el ", "wor"]
a.scan(/(...)/)      #=> [["cru"], ["el "], ["wor"]]
a.scan(/(..)(..)/)   #=> [["cr", "ue"], ["l ", "wo"]]

以下是melpomene的修改版本,如果合适的话,返回平面阵列的答案。

function scan(str, regexp) {
    if (!regexp.global) {
        throw new Error("RegExp without global (g) flag is not supported.");
    }
    var result = [];
    var m;
    while (m = regexp.exec(str)) {
        if (m.length >= 2) {
            result.push(m.slice(1));
        } else {
            result.push(m[0]);
        }
    }
    return result;
}