正则表达式:我可以命名我的匹配并将它们作为关联数组吗?

时间:2015-08-28 11:52:55

标签: javascript regex match associative-array

通常你的比赛有点像这样:

var myString = "Hello Alex, I am John";
matches = myString.match(/"Hello ([hisName].+) I am ([yourName].+)/);
console.log(match.hisName);
console.log(match.yourName);

但是在javscirpt中可以在正则表达式中命名你的匹配吗?

有点像这样:

UIViewControllerBasedStatusBarAppearance

0 个答案:

没有答案