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

来源:3-3 使用 SAX 解析 XML 文件的节点名和节点间文本

qq_noheartnoswe_04385033

2016-12-24 22:41

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

写回答 关注

2回答

  • 慕粉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.

Java眼中的XML---文件读取

通过Java认识并且创造XML文件,如何应用 Java“解析 XML

83202 学习 · 431 问题

查看课程

相似问题