重用哈希键并生成 csv 就绪格式

发布于 2025-01-11 15:41:31 字数 824 浏览 0 评论 0原文

我正在尝试使用 jq 创建 csv 就绪输出,并希望在途中重用嵌套的哈希键。

在此示例中,应重用 http、https 来生成 csv 就绪格式 ([][]...)

原始

{
   "google.com":{
      "https":{
         "dest_url":"http://aaa.com"
      }
   },
   "microsoft.com":{
      "http":{
         "dest_url":"http://bbb.com"
      },
      "https":{
         "dest_url":"http://ccc.com"
      }
   }
}

预期

[
  "https://google.com",
  "http://aaa.com"
]
[
  "http://microsoft.com",
  "http://bbb.com",
]
[
  "https://microsoft.com",
  "http://ccc.com"
]

我尝试过的

to_entries[] | [.key, .value[].dest_url]
[
  "google.com",
  "http://aaa.com"
]
[
  "microsoft.com",
  "http://bbb.com",
  "http://ccc.com"
]

I'm trying to create an csv ready output with jq, and want to reuse the nested hash key on the way.

In this example http, https should be reused to generate csv ready format ([][]...).

Original

{
   "google.com":{
      "https":{
         "dest_url":"http://aaa.com"
      }
   },
   "microsoft.com":{
      "http":{
         "dest_url":"http://bbb.com"
      },
      "https":{
         "dest_url":"http://ccc.com"
      }
   }
}

Expected

[
  "https://google.com",
  "http://aaa.com"
]
[
  "http://microsoft.com",
  "http://bbb.com",
]
[
  "https://microsoft.com",
  "http://ccc.com"
]

What I tried

to_entries[] | [.key, .value[].dest_url]
[
  "google.com",
  "http://aaa.com"
]
[
  "microsoft.com",
  "http://bbb.com",
  "http://ccc.com"
]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兮颜 2025-01-18 15:41:31

如果将 .key 的访问和 .value[] 的迭代分开,您将得到笛卡尔积:

jq 'to_entries[] | [.key] + (.value[] | [.dest_url])'
[
  "google.com",
  "http://aaa.com"
]
[
  "microsoft.com",
  "http://bbb.com"
]
[
  "microsoft.com",
  "http://ccc.com"
]

Demo


要包含嵌套键,在使用内部键下降之前更容易保存外部 .key to_entries

jq 'to_entries[] | .key as $key | .value | to_entries[] | [.key + "://" + $key, .value.dest_url]'
[
  "https://google.com",
  "http://aaa.com"
]
[
  "http://microsoft.com",
  "http://bbb.com"
]
[
  "https://microsoft.com",
  "http://ccc.com"
]

演示

If you separate accessing .key and the iteration over .value[], you'll get the cartesian product:

jq 'to_entries[] | [.key] + (.value[] | [.dest_url])'
[
  "google.com",
  "http://aaa.com"
]
[
  "microsoft.com",
  "http://bbb.com"
]
[
  "microsoft.com",
  "http://ccc.com"
]

Demo


To include the nested keys, it's easier to save the outer .key before descending with the inner to_entries:

jq 'to_entries[] | .key as $key | .value | to_entries[] | [.key + "://" + $key, .value.dest_url]'
[
  "https://google.com",
  "http://aaa.com"
]
[
  "http://microsoft.com",
  "http://bbb.com"
]
[
  "https://microsoft.com",
  "http://ccc.com"
]

Demo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文