Breadcrumbs

XmlToJson

Summary

Converts an XML to a JSON

image2021-5-11_16-13-25.png

Example 

The text

"<employees>
  <employee>
    <firstName>John</firstName> <lastName>Doe</lastName>
  </employee>
  <employee>
    <firstName>Anna</firstName> <lastName>Smith</lastName>
  </employee>
  <employee>
    <firstName>Peter</firstName> <lastName>Jones</lastName>
  </employee>
</employees>"

will be converted to

"{

   "employees":{

      "employee":[

         {

            "firstName":"John",

            "lastName":"Doe"

         },

         {

            "firstName":"Anna",

            "lastName":"Smith"

         },

         {

            "firstName":"Peter",

            "lastName":"Jones"

         }

      ]

   }

}"