I've been looking on internet without finding answers to my problem. I want that the user enter a login to create his account, but I need to check if there is any punctuation or accentued characters in the login name. To sum up I only want this kind of characters: [0-9] or [a-z] or [A-Z] or any asian characters except asian punctuations.
What I've been thinking was to do a loop on my string and to look if the actual character is equal to a pronunciation or accentued characters but there are so many punctuations and accentued characters that it would take me a long time to write them all. And the fact is I don't know all the punctuations characters used in the asian writing system.
Do you have any idea about what should I do ? Thank you !