-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
regular expression support #64
Comments
I don't mind giving it a try if it can be accepted. |
Fixed in #65 {
"expression": "matches('This and these', 't(his|h[eo]se)')",
"result": true
},
{
"expression": "matches('Those people', 't(his|h[eo]se)')",
"result": false
},
{
"expression": "matches('THOSE people', '(?i)t(his|h[eo]se)')",
"result": true
}, |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Following up on jmespath/jmespath.jep#23
Fine, but how about providing a regular expressions function among the Built-in Functions.
The regular expressions will be Go specific, but that's much better than not having any regular expression support, for
jp
at least.The text was updated successfully, but these errors were encountered: