Hello
i have a very simple json structure here.
What is the easiest way to convert it to CSV format ?
probably there is a clever solution
Best regards
i have a very simple json structure here.
What is the easiest way to convert it to CSV format ?
probably there is a clever solution
B4X:
{
"root": [
{
"customerID": "12874",
"articleID": 12,
"ordernumber": "25503",
"articlename": "Wein 1",
"quantity": 5,
"price": 2.44
},
{
"customerID": "12874",
"articleID": 20,
"ordernumber": "82725",
"articlename": "Wein 2",
"quantity": 5,
"price": 12.10
},
{
"customerID": "12874",
"articleID": 25,
"ordernumber": "7414",
"articlename": "Wein 2",
"quantity": 5,
"price": 2.19
}
]
}
Best regards
Last edited: