|
Is there a way to have a case-insensitive [Asserts]
jsonpath "$.message" matches /response/ibut that produces I don't see a lowercase/case folding filter, so I can't just force it to lowercase first. |
Replies: 2 comments 1 reply
|
Hi @skeggse It's not written in the doc (once again 😅) but we use the Rust crate regex for regex https://docs.rs/regex/latest/regex/#syntax where Can you try it and confirm me if it's working? I'll create an issue to update the docs with the link to the format we're using. We should also have proper |
|
Hi, |
Hi @skeggse
It's not written in the doc (once again 😅) but we use the Rust crate regex for regex https://docs.rs/regex/latest/regex/#syntax where
(?flag)should work:Can you try it and confirm me if it's working? I'll create an issue to update the docs with the link to the format we're using. We should also have proper
lowercase/uppercasefilters.