重新理解Java字符串trim()方法,不仅仅是去空格

一般理解trim()是去掉字符串两遍的空格,其实不仅仅是去空格。

实际是去除String类前后的whitespace,“空白字符”,空格只是其中一种。

上源码,看怎么回事:

     /** 
     * This method may be used to trim whitespace (as defined above) from
     * the beginning and end of a string.
     *
     * @return  A string whose value is this string, with any leading and trailing white
     *          space removed, or this string if it has no leading or
     *          trailing white space.
     */
    public String trim() {
        int len = value.length;
        int st = 0;
        char[] val = value;    /* avoid getfield opcode */

        while ((st < len) && (val[st] <= ' ')) {
            st++;
        }
        while ((st < len) && (val[len - 1] <= ' ')) {
            len--;
        }
        return ((st > 0) || (len < value.length)) ? substring(st, len) : this;
    }

 while ((st < len) && (val[st] <= ' '))这一行是判断前面的每个char的值与空格的字符的ASCII编码值进行比较,空格的十进制ASCII编码值为32,及小于这个值得字符都会被截掉,参考ASCII编码表,该范围内常见的几个字符有:空字符、退格、水平制表符、换行键、回车键等。

判断后面的空格含义同理。

附ASCll编码表:

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值