Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 403 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 403 Bytes

json-parse

Convert XML to JSON in Clojure

Usage

First we need to parse the XML with this function:

    (defn parse [s] (clojure.xml/parse (java.io.ByteArrayInputStream. (.getBytes s))))

Then we just use the xml->json:

    (def parsed-xml (parse "<person><name>Salvatore</name><address>Parlermo</address></person>"))
    (def json (xml->json parsed-xml)