gpt4 book ai didi

json - 使用 SED 命令检索 JSON 对象键值

转载 作者:行者123 更新时间:2023-12-04 18:42:56 24 4
gpt4 key购买 nike

我有一个来自 curl 命令的 JSON,如下所示,它存在于 output.txt 文件中。我想找回 JIRA 状态,这里是“进行中”

{
"self": "https://jira.com/jira/rest/api/2/issue/1",
"fields": {
"status": {
"self": "https://jira.com/jira/rest/api/2/status/10170",
"description": "",
"name": "In Progress",
"id": "10170"
}
}
}
我有一个只能使用 sed 的限制。我试过如下它不起作用。我不确定如何导航到名称值。你能建议打印JIRA状态吗
sed -n 's|.*"fields":{"status":{"name":"\([^"]*\)".*|\1|p'  output.txt

最佳答案

您可以使用

sed -n 's/^[[:space:]]*"name": "\(.*\)",/\1/p' output.txt
# With GNU sed:
sed -n 's/^\s*"name":\s*"\(.*\)",/\1/p' output.txt
online demo
细节:
  • n - 禁止默认行输出
  • ^\s*"name":\s*"\(.*\)", - 火柴
  • ^ - 字符串开头
  • \s* - 零个或多个空格
  • "name": - 文字字符串
  • \s* - 零个或多个空格
  • " - 一个 "字符
  • \(.*\) - 一个 POSIX BRE 捕获组,匹配最多
  • 的任何文本
  • ", - 最后一次出现 ", (无论如何,它们都在目标行的末尾)。

  • \1 - 将整个匹配替换为第 1 组值
  • p - 只打印替换结果。

  • 使用 GNU sed ,您也可以使用 -z选项将文件作为单个字符串读取,然后使用更具体的模式:
    sed -z 's/.*"fields":\s*{\s*"status": {.*\s*name": "\([^"]*\)".*/\1/' output.txt
    this online demo .
    它的作用非常接近 this demo .

    关于json - 使用 SED 命令检索 JSON 对象键值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67836241/

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