Replies: 1 comment 1 reply
-
Is there a specific problem you ran into in trying to write your parser with winnow? Thatd help in knowing how to best give next steps in you writing your parser. If you haven't checked out the json parsers we have under Special Topics in the docs, I'd recommend those as they show delimited, wrapped values. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here is the document I want to parse, including
keyN
and two parentheses. I use()
to say that the elements are ordered, I use{}
to say that the elements are disordered, and()
and()
{} ` can be nested with each other. How can I use winnow to parse this structureBelow is the data structure that I defined in rust
Beta Was this translation helpful? Give feedback.
All reactions