DmytroBazunov / LibreOfficeGetRestPlugin

The extension for LibreOffice Calc that's allows LibreOffice to get data from rest server.
39 stars 12 forks source link

Use array notation to access arrays #8

Open dandv opened 6 years ago

dandv commented 6 years ago

The example for extracting the second phone number reads

A2: =parsejson(A1,"phoneNumbers.get(1).number")

Why use "get"? It's confusing because it's the same as the GET function, and there is already a well-established notation for accessing arrays in nested data structures:

A2: =parsejson(A1, "phoneNumbers[1].number")