Sometimes I have to search for nodes by request of RegExp ignore case, and it does not work with non-Latin characters.
For example, I have node.name property = і є
If i'm looking
name =~ (?i).* і є.*
everything is working fine
but in case
name =~ (?i).* і є.*
he is not looking for node.
By the way, everything works fine in Latin letters.
What am I doing wrong and how to fix it?
source share