|
|
|
|
<JSON variable>.ToXML (Function) In french: <Variable JSON>.VersXML Converts a JSON string to XML.
let json = StringToJSON(" {"name": "TestName" ,"id": 2 ,"true": "True" ,"list": [5,5,6,2,47] } ") let xml = json.ToXML() Trace(xml..XMLSource) // The result will be // <document> // <name>TestName</name> // <id>2</id> // <true>true</true> // <list> // <item>5</item> // <item>5</item> // <item>6</item> // <item>2</item> // <item>47</item> // </list> // </document>
Syntax
<Result> = <JSON to convert>.ToXML([<Converter>])
<Result>: xmlNode variable xmlNode variable that corresponds to the converted JSON string. <JSON to convert>: JSON variable Name of the JSON variable to be converted. <Converter>: Optional JSONXMLConverter variable Name of the JSONXMLConverter variable that corresponds to the custom conversion standard to be applied. Caution: This customization requires a good knowledge of XML. If this parameter is not specified, a default standard will be used for the conversion: the default values of the JSONXMLConverter variable are used.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|