Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ArgumentTypeDescription
stringStringJSON string to be converted to XML.

Examples

Code Block
jsonToXML("{"InvoiceLine": { "Item": "Chair", "Quantity": "18", "Price": "15.00" } }")

Generates the XML

Code Block
<

...

?xml version="1.0" encoding="UTF-8"?>
<o><InvoiceLine><Item>Chair</Item><Price>15.00</Price><Quantity>18</Quantity></InvoiceLine></o>


See Also