Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/xpath/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用java在json xpath中使用contains函数_Json_Xpath_Jsonpath - Fatal编程技术网

如何使用java在json xpath中使用contains函数

如何使用java在json xpath中使用contains函数,json,xpath,jsonpath,Json,Xpath,Jsonpath,如何使用json路径获取作者名包含“Rees”的书籍的标题,我尝试使用“$.book.[(@.author=~/.*Rees')]”,但这对我不起作用,请任何人帮助我 { "store": { "book": [ { "category": "reference", "author": "Nigel Rees", "tit

如何使用json路径获取作者名包含“Rees”的书籍的标题,我尝试使用“$.book.[(@.author=~/.*Rees')]”,但这对我不起作用,请任何人帮助我

{
            "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,
                    "style": [ "city", "hybrid" ]
                }, {
                    "color": "blue",enter code here
                    "price": 59.91,
                    "style": [ "downhill", "freeride" ]
                } ]
            }
        }