Query about the trim() method in Java

前端 未结 2 972
孤城傲影
孤城傲影 2021-01-29 07:49

I asked a question earlier but met harsh criticism, so here I pose it again. Simpler, and rephrased to appeal to those who may have been concerned about the way I asked it befor

2条回答
  •  北海茫月
    2021-01-29 08:16

    String.trim() specifically only removes characters before the first character whose code exceeds \u0020, and after the last such character.

    This is insufficient to remove all possible white space characters - Unicode defines several more (with code points above \u0020) that will not be matched by .trim().

    Perhaps your white space characters aren't the ones you think they are?

    EDIT comments revealed that the extra characters were indeed "special" whitespace characters, specifically \u00a0 which is a Unicode "non-breaking space". To replace those with normal spaces, use:

    str = str.replace('\u00a0', ' ');
    

提交回复
热议问题