Skip to content

Instantly share code, notes, and snippets.

@tyage
Created June 2, 2014 14:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tyage/d791014c0789b3cbaee7 to your computer and use it in GitHub Desktop.
Save tyage/d791014c0789b3cbaee7 to your computer and use it in GitHub Desktop.
var reg = /^\w/y;
reg.exec('xyz'); // => x
reg.exec('xyz'); // => y
reg.exec('xyz'); // => z
reg.exec('xyz'); // => null
reg.exec('xyz'); // => x
reg.lastIndex = 2;
reg.exec('xyz'); // => z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment