Neither upper() nor lower() work on the Chumdroid app. It's a bit of a bitch to do without, but it is possible. You would need to write 52 quirks, one for each letter in either uppercase or lowercase.
GaM A: Replace "([a-z])([aA])" with "(\1)A"
GaM a: Replace "([A-Z])([aA])" with "(\1)a"
GaM B: Replace "([a-z])([bB])" with "(\1)B"
GaM b: Replace "([A-Z])([bB])" with "(\1)b"
And so on like that.



Reply With Quote







