Skip to content

Instantly share code, notes, and snippets.

@binnng
Created July 28, 2013 11:29
Show Gist options
  • Save binnng/6098268 to your computer and use it in GitHub Desktop.
Save binnng/6098268 to your computer and use it in GitHub Desktop.
正则的贪婪模式
//开启贪婪模式
/a(.*)z/.exec('aszdfffz');
//禁止贪婪模式
a(.*?)z/.exec('aszdfffz');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment