var str = 'STRING_ID#0="Stringtext"';
var myRegexp = /"([^"]*)"/g;
var arr = [];
//Iterate through results of regex search
do {
var match = myRegexp.exec(str);
if (match != null)
{
//Each call to exec returns the next match as an array where index 1
//is the captured group if it exists and index 0 is the text matched
arr.push(match[1] ? match[1] : match[0]);
}
} while (match != null);
document.write(arr.toString());
4条答案
按热度按时间js5cn81o1#
实现这一点的方法是使用捕获组。但是,不同的语言处理捕获组的方式略有不同。下面是一个JavaScript的例子:
输出为
z18hc3ub2#
试试这个
368yc8dk3#
我推荐阅读有关REGEXes here的文章
sd2nnvve4#
Edit live on Debuggex
这是2011年被问到的……