1
micean 2021-07-17 15:30:09 +08:00
处理好对称的括号和引号就行了
|
2
Knuth 2021-07-17 16:16:27 +08:00 via Android
leptjson
一个简易的 json 实现库 |
3
aguesuka 2021-07-17 16:35:02 +08:00
|
4
Acebiu 2021-07-17 17:23:33 +08:00
> Lark is a parser - a program that accepts a grammar and text, and produces a structured tree that represents that text. In this tutorial we will write a JSON parser in Lark, and explore Lark's various features in the process.
https://github.com/lark-parser/lark/blob/master/docs/json_tutorial.md |
5
ao99 2021-07-17 19:38:46 +08:00
|
6
agagega 2021-07-17 21:41:53 +08:00 via iPhone 1
这书虽然是神书,但不研究这块的是看不完的。有点类似你问算法看什么,让你去看 TAOCP.
https://www.json.org/json-en.html 已经给了形式化定义了,json 语法也不涉及左递归。所以只要懂一点点终结符 /非终结符的概念,就能写一个递归下降了。(其实不懂也可以写,懂递归就行) |
7
yangzhezjgs 2021-07-18 10:33:51 +08:00
https://zhuanlan.zhihu.com/p/22457315 可参考叶老师的教程
|