Possible Duplicate:
How do I detect unicode characters in a Java string?
Inspired from How do I detect Unicode characters in a Java string?
Suppose I have a string that contains Ü. How would I find all those Unicode characters? Should I test for their code? How would I do that with out using any external modules?
For example, given the string "AÜXÜ", I'd like to transform it to "AYXY". I'd like to do the same for other Unicode characters, and I would hate to have to store them in a translation map of some sort.
