Created
February 25, 2019 21:35
-
-
Save coelhucas/f7e905a38983c4d8e7ab70eada837793 to your computer and use it in GitHub Desktop.
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
function parseString(string) { | |
const keyRegex = /(\w+\d+):/g; | |
const valRegex = /:(["']?)(\w+)(\\?.)*?\1/g; | |
const matchKeys = string.match(keyRegex); | |
const matchValues = string.match(valRegex); | |
let result = []; | |
for (let i = 0; i < matchKeys.length; i++) { | |
matchKeys[i] = matchKeys[i].slice(0, matchKeys[i].length - 1); | |
matchValues[i] = matchValues[i].substring(1); | |
result[i] = { | |
[matchKeys[i]]: matchValues[i] | |
}; | |
} | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment