Skip to content

Instantly share code, notes, and snippets.

@incognitosj
Created January 8, 2017 14:05
Show Gist options
  • Save incognitosj/d3c0c41b5b22bfa83dcec6703789d415 to your computer and use it in GitHub Desktop.
Save incognitosj/d3c0c41b5b22bfa83dcec6703789d415 to your computer and use it in GitHub Desktop.
Parse text using Regex to Extract Intended Data
/**
* text: data from which data needs to be parsed
* regularExpression: Regular expression
**/
function extractData(text, regularExpression) {
var regex = new RegExp(regularExpression);
var res = body.match(regex);
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment