📄 XML vers JSON

Convertir XML en format JSON
Entrée
Sortie
Exemples:
Exemple XML
<a x="1.234" y="It's"/>
Exemple JSON
{
  "a": {
    "_attributes": {
      "x": "1.234",
      "y": "It's"
    }
  }
}