-
Is there a way to have a case-insensitive
but that produces I don't see a lowercase/case folding filter, so I can't just force it to lowercase first. |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
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
/uppercase
filters.