I have the following string (japanese) " ユーザー名" , the first character is "like" whitespace but its number in unicode is 12288, so if I do " ユーザー名".trim() I get the same string (trim doesn't work). If i do trim in c++ it works ok. Does anyone know how to solve this issue in java? Is there a special trim method for unicode?
|
|
|
|
|
|
|
As an alternative to the
Or, to really only trim, and not remove whitespace inside the string:
|
||||||||||
|
|
|
Have a look at Unicode Normalization and the Normalizer class. The class is new in Java 6, but you'll find an equivalent version in the ICU4J library if you're on an earlier JRE.
|
||
|
|
|
|
Try the Apache Commons' StringUtils class. The StringUtils.strip() method should work for you. |
||
|
|
|
|
From the java docs, it explains why this doesn't work.
You could role your own version easily enough. perhaps the method codePointAt could be used for this purpose. http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html |
||
|
|
|
|
You'll have to write your own |
||
|
|
