XML-to-JSON-in-XSLT
XML-to-JSON-in-XSLT copied to clipboard
{ is very generic and not able to change it for child
current output: { "root" : { "items" : { "Svitem" : [ { "123" }, { "123" } ], "item" : [ { "123" }, { "123" }, { "123" }, { "123" }, { "123" } ] } } }
needed output: { "root" : { "items" : { "Svitem" : [ "123" , "123" ], "item" : ["123" , "123" , "123" , "123" , "123" ] } } }