Hi guys,
so Im having a little trouble extracting some JSON data.
The path to the data is
payload.feed.entry[0].content.$t
but I think the $ symbol is causing an identifier error - anyone have any ideas of how to get round this?
Hi guys,
so Im having a little trouble extracting some JSON data.
The path to the data is
payload.feed.entry[0].content.$t
but I think the $ symbol is causing an identifier error - anyone have any ideas of how to get round this?
Tables in Squirrel (like in Javascript) are just dictionaries.
payload.feed.entry[0].content["$t"]
Peter
ahh! yet again peter, thanks for your help. That works a treat now. Its the little things that are easy to over look