Simplify text to only lowercase ascii. But how to make ç c and å a
0
I want to reduce a string’s complexity down to only lowercase letters. Also removing spaces and non-characters. That is all easily done by replaceAll(toLowerCase($MyObject/MyAttribute),'[^a-zA-z]','') But I also want to convert ç to c å to a Ù to u How to do that?