Repository Details
Shared by


HelloGitHub Rating
0 ratings
Free•MIT
Claim
Discuss
Collect
Share
2.2k
Stars
No
Chinese
Go
Language
No
Active
7
Contributors
26
Issues
No
Organization
2.5.2
Latest
142
Forks
MIT
License
More
一款支持解析、查询 JSON/YAML/XML/CSV 数据的 Go 三方开源库。示例代码:
```go
package main
import "github.com/thedevsaddam/gojsonq"
func main() {
const json = `{"name":{"first":"Tom","last":"Hanks"},"age":61}`
name := gojsonq.New().FromString(json).Find("name.first")
println(name.(string)) // Tom
}
```
Included in:
Vol.46
Comments
Rating:
No comments yet