ibec_JsonToXML

ibec_JsonToXML allows the conversion of JSON data to XML. Afterwards ibec_msxml_xxx functions can be used to process data.

Syntax

 function ibec_JsonToXML(JsonData : string, Options : variant);

Example

    s = ibec_LoadFromFile('d:\temp\data.json');
    s = ibec_JsonToXML(s, 'Readable');
    ibec_SaveToFile('d:\temp\data.xml', s, __stfOverwrite);

A further example can be found here: Working with XML data.

back to top of page
<< Working with XML data | IBEBlock | ibec_msxml_Create>>