Add regular expressions support for JSONPath

Feature Request
User story: As user a want to filter list of objects in a response by value’s prefix of certain field
Response example:
[
{
"type": "radio",
"code": "bank_1_1",
"weight": 0,
},
{
"type": "radio",
"code": "bank_1_7",
"weight": 0,
},
{
"type": "radio",
"code": "bank_2_8",
"weight": 0,
},
{
"type": "radio",
"code": "bank_3_3",
"weight": 0,
}
]
Now i haven’t tools for filtering objects which code value has a bank_1 prefix
As offer we can replace vanilla JSON Path on JSONPath Plus that supports reqular expressions as @.match(/pattern/flags) and adds other functionality for more granular search: https://github.com/JSONPath-Plus/JSONPath
macOS2026.4.0
Thanks for the example. It turns out this already works in Yaak because it uses JSONPath Plus:
I tested it here:
Oh Thanks for the answer - it really works!
Glad that worked!