gpt4 book ai didi

json - 在 JSON 数组中查找重复项

转载 作者:行者123 更新时间:2023-12-03 17:56:02 25 4
gpt4 key购买 nike

有谁知道如何使用 jq 在 JSON 数组中查找重复项?

例如:

输入:

[{"foo": 1, "bar": 2}, {"foo": 1, "bar": 2}, {"foo": 4, "bar": 5}]

输出:
[{"foo": 1, "bar": 2}]

最佳答案

jq 中许多可能的解决方案之一:

group_by(.) | map(select(length>1) | .[0])

关于json - 在 JSON 数组中查找重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48058204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com