-
Notifications
You must be signed in to change notification settings - Fork 478
Description
XRef: #428, https://docs.rs/regex/1.11.1/regex/index.html#unicode
According to the documentation:
Case insensitive searching is Unicode-aware and uses simple case folding.
I would like to request full case folding support.
Why do I need full case folding?
We are currently using libicu
which supports full case folding. We have tested using regex
on our datasets and full case folding turns out to be a requirement for the migration towards regex
from libicu
.
Do you need help (to implement this feature)?
I understand if you don't want to enable this by default, working towards a feature flag would be a workable solution from our point of view. We can work on the feature if the regex
team would be open to having it.
We didn't make any progress towards implementing this feature, i.e. no patch is lying around.
Example
Regex (?i)sss
with full case folding enabled would match:
sss
ßs
sß
Feel free to inquire for additional information if something is missing from the request.