diff --git a/README.md b/README.md index 12268693..7a8009c9 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,7 @@ Given the json | $..book[?(@.isbn)] | All books with an ISBN number | | $.store.book[?(@.price < 10)] | All books in store cheaper than 10 | | $..book[?(@.price <= $['expensive'])] | All books in store that are not "expensive" | +| $.store.book[?(@.author =~ /.*REES/i)] | All books matching regex (ignore case) | | $..* | Give me every thing |