Skip to content

Instantly share code, notes, and snippets.

@akirattii
Created July 14, 2016 23:34
Show Gist options
  • Save akirattii/6edd0708d4dd43d6685db2c20d67469a to your computer and use it in GitHub Desktop.
Save akirattii/6edd0708d4dd43d6685db2c20d67469a to your computer and use it in GitHub Desktop.
RegExp.exec search looping...
var reg = new RegExp(/e(.*?)e/g);
var result;
while((result = reg.exec(targetText)) !== null) {
doSomethingWith(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment