Skip to content

Instantly share code, notes, and snippets.

@coelhucas
Created February 25, 2019 21:35
Show Gist options
  • Save coelhucas/f7e905a38983c4d8e7ab70eada837793 to your computer and use it in GitHub Desktop.
Save coelhucas/f7e905a38983c4d8e7ab70eada837793 to your computer and use it in GitHub Desktop.
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