Created
January 8, 2017 14:05
-
-
Save incognitosj/d3c0c41b5b22bfa83dcec6703789d415 to your computer and use it in GitHub Desktop.
Parse text using Regex to Extract Intended Data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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