For example to filter case sensitive in _FILENAME: %_FILENAME% MATCHES (?-i)dog %_FILENAME% MATCHES (?-i)DOG
For your special characters like Ç or ç you could also use the syntax \x{0123} - where you have to use the correct value for the characters: %_FILENAME% MATCHES (?-i)\x{00C7} -> Ç %_FILENAME% MATCHES (?-i)\x{00E7} -> ç