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

JsonPath expression to filter using regex

我们正在使用一种工具,该工具使用 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
}

您可以使用捕获组或后向断言。

"title":\s*"([^"]*\bSword\b[^"]*)"

如有必要,添加 case-insensitive 修饰符 i。从组索引 1 中获取标题字符串。

DEMO

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

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

忽略大小写:

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

郑重声明,Goessner 的 javascript JSONpath 中条件正则表达式的解决方法是按如下方式编写查询:

$.store.book[?(/^.*sword.*$/i.test(@.title))]

请看这里 https://github.com/jpaquit/jsonpath/tree/0.8.5-+-regexp JS 库中的“=~”语法。