You are not logged in.
Pages: 1
Is there a option to get key and value with index of item?
DocList.Items[0].key
DocList.Items[0].Value
Offline
I mean somthing like this:
for docdict in DocList do
docdict .get_item_by_index(0);
get item value for docdict with index.
Last edited by anouri (2025-03-13 06:34:38)
Offline
Hi anouri,
jsonobjects has per definition as far as i know no real order. So direct access via an index is a little bit risky, if the creator will change his output/implementation.
You can use the DocDict.GetEnumerator to loop through the object elements.
I can also have a look at the implementation of the interator. But direct access is not possible without "pointer magic" i think.
Offline
order is not matter. suppose json = {"a": 1,"b":2}
fdocdict := DocDict (json);
what is the problem with:
fdocdict[0].key
fdocdict[0].value
or somthing like that.
maybe conevrting docdict to varinat can help?
Last edited by anouri (2025-03-17 08:13:50)
Offline
Excellent.Thank you
Offline
Pages: 1