bedeviled mojo slopIf you have to ask, you don't want to know!Unicode Normalization in Java- August 2, 2004 Given recent discussions on the atom-syntax mailing list regarding normalization, I figured it'd be useful to point other Java folks (again) at IBM's International Components for Unicode for Java. In particular, the Normalizer. So, if you needed to do something like normalize using NFKC (Compatability decomposition followed by canonical composition), you could use the following method: static String normalize(String src, Normalizer.Mode mode) with the mode of Normalizer.Mode.NFKC Doesn't...http://www.blojsom.com/blog/david/i18n/2004/08/02/unicode-normalization-java.html |