Skip to content

Instantly share code, notes, and snippets.

@zhuzhuaicoding
Created October 10, 2012 04:00
Show Gist options
  • Select an option

  • Save zhuzhuaicoding/3863071 to your computer and use it in GitHub Desktop.

Select an option

Save zhuzhuaicoding/3863071 to your computer and use it in GitHub Desktop.
$1,...属性是挂在正则表达式对象RegExp对象
var myRe = /d(b+)d/g;
var myArray = myRe.exec("cdbbdbsbz");
console.log(RegExp.$1);//bb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment