I've this regex:
if (cadena.matches("^[a-zA-Z ]+$")) return true;
It's accepting from A to Z as lowercase and uppercase. Also accepting spaces.
But this is working just for english. For instance, in Catalan we've the 'ç' character. Also we've characters with 'á', or 'à', etc.
Did some google and I couldn't find any way to do this.
I found out that I can filter for UTF-8 but this would accept characters that are not really a letter.
How can I implement this?