gpt4 book ai didi

regex - 使用正则表达式过滤的 JsonPath 表达式

转载 作者:行者123 更新时间:2023-12-04 07:52:58 25 4
gpt4 key购买 nike

我们正在使用一个工具,它使用 jayway 库来评估 JSONpath 表达式。 Javascript 似乎不适用于它 .在这种情况下,如何在 JSONPath 中使用正则表达式。例如,在下面的示例中,我想过滤标题中包含“Sword”一词的所有书名:

{
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
},
"expensive": 10
}

最佳答案

Jayway implementation使用 Ruby 正则表达式运算符:

$.store.book[?(@.title =~ /^.*Sword.*$/)]

忽略大小写:
$.store.book[?(@.title =~ /^.*sword.*$/i)]

关于regex - 使用正则表达式过滤的 JsonPath 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28954720/

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