我有一个这样的字符串:matrix(10, 0, 1, 0, -198, 23)
然后我需要匹配该函数的参数并放入数组中:
var regexp = /.../gi
var match = regexp.exe('matrix(10, 0, 1, 0, -198, 23)');
console.debug(match) // must return: [10, 0, 1, 0, -198, 23]
我对正则表达式不是很熟悉,但我认为这将是完成这项工作的最快方法。
在这种情况下,拆分字符串是不可能的。
遮阳篷的性能测试:http: //jsperf.com/regexp-match-vs-string-split