问答详情
源自:3-3 使用 SAX 解析 XML 文件的节点名和节点间文本

value.trim()解释下是什么意思呢?

value.trim()解释下是什么意思呢?

提问者:qq_noheartnoswe_04385033 2016-12-24 22:41

个回答

  • 慕粉4353249
    2017-01-09 20:18:35

    就是字符串去除字符串最左边和最右边的空格

    如String i = new String("  123  123  ");//字符串最左边,最右边以及中间各有2个空格

    System.out.println(i);

    System.out.println(i.length());

    System.out.println(i.trim());

    System.out.println(i.trim().length());

     输出的结果为:

      123  132  

    12

    8

    123  132

    因为trim()方法去除了字符串最左边,最右边的空格,所以字符串长度少了4,

    注:trim()方法无法去除字符串中间的空格

  • 慕前端8337980
    2016-12-25 01:30:38

    The java string trim() method eliminates leading and trailing spaces. The unicode value of space character is '\u0020'. The trim() method in java string checks this unicode value before and after the string, if it exists then removes the spaces and returns the omitted string.