How would you convert from XML to JSON and then back to XML?
The following tools work quite well, but aren\'t completely consistent:
I've created a recursive function based on regex, in case you don't want to install library and understand the logic behind what's happening:
const xmlSample = 'tag content another content inside content ';
console.log(parseXmlToJson(xmlSample));
function parseXmlToJson(xml) {
const json = {};
for (const res of xml.matchAll(/(?:<(\w*)(?:\s[^>]*)*>)((?:(?!<\1).)*)(?:<\/\1>)|<(\w*)(?:\s*)*\/>/gm)) {
const key = res[1] || res[3];
const value = res[2] && parseXmlToJson(res[2]);
json[key] = ((value && Object.keys(value).length) ? value : res[2]) || null;
}
return json;
}
Regex explanation for each loop:
You can check how the regex works here: https://regex101.com/r/ZJpCAL/1
Note: In case json has a key with an undefined value, it is being removed. That's why I've inserted null at the end of line 9.