Skip to content

Instantly share code, notes, and snippets.

@gokusenz
Created September 21, 2017 03:21
Show Gist options
  • Save gokusenz/afa6e220298f75f042ed1ccb0b179ddc to your computer and use it in GitHub Desktop.
Save gokusenz/afa6e220298f75f042ed1ccb0b179ddc to your computer and use it in GitHub Desktop.
var input = "'Warehouse','Local Release','Local Release DA'";
var regex = /'(.*?)'/g;
var matches, output = [];
while (matches = regex.exec(input)) {
output.push(matches[1]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment