how do I parse unknown json data format? #18565
Answered
by
JalonSolov
refaqtor
asked this question in
Questions and Answers
-
I'm trying to read JSON of which I don't have defined struct to load them into as called for by the current std lib
Am I misunderstanding how that works? How does one do the, seemingly, simple task of reading in unknown JSON data format? |
Beta Was this translation helpful? Give feedback.
Answered by
JalonSolov
Jun 26, 2023
Replies: 1 comment 2 replies
-
Use functions from |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
refaqtor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use functions from
x.json2
, rather than regularjson
module. The plan is forx.json2
to replacejson
once it is complete. For now, you may wind up using some functions from both to get complete JSON support.