I've input an input file which I need to process and discard all the white-spaces, including non-breaking space U+00A0
aka  
(You can produce it in Notepad by pressing Alt and then typing 0 1 6 0 from the keyboard's numeric pad.) or any other form of white space. I have tried String.trim()
but it doesn't trim U+00A0
.
Do I need to explicitly check for U+00A0
and then trim()
or is there an easy way to trim all kinds of white-spaces in Java?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…