JsonPath表达式使用正则表达式进行过滤

sjn*_*sjn 7 regex json jsonpath

我们正在使用一个使用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
}
Run Code Online (Sandbox Code Playgroud)

小智 6

Jayway实现使用正则表达式的Ruby操作:

$.store.book[?(@.title =~ /^.*Sword.*$/)]
Run Code Online (Sandbox Code Playgroud)

忽略大小写:

$.store.book[?(@.title =~ /^.*sword.*$/i)]
Run Code Online (Sandbox Code Playgroud)