gpt4 book ai didi

json - 提取 json 数组/对象的第一个和最后一个值

转载 作者:行者123 更新时间:2023-12-04 13:30:52 26 4
gpt4 key购买 nike

我在 Windows 10 环境中使用 jq 1.5。我通过 api 收到一些信息,包括不同的城市数组:

  {

"cruises": [
{

"waypoint_cities": [
"Palma de Mallorca",
"Cádiz",
"Puerto del Rosario, Fuerteventura",
"Arrecife, Lanzarote",
"Arrecife, Lanzarote",
"Agadir",
"Gibraltar",
"Barcelona",
"Palma de Mallorca"
]}]}

如何使用 jq 找到这些数组的第一个和最后一个条目?我尝试了 min/maxby 函数,但该函数仅提供字母表中第一个和最后一个字符的条目。

问候
蒂莫

最佳答案

这是使用 first 的解决方案和 last

.cruises[].waypoint_cities | first, last

输出
"Palma de Mallorca"
"Palma de Mallorca"

关于json - 提取 json 数组/对象的第一个和最后一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45979477/

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