看到很多代码都用了Trim()方法,string的Trim()方法是做什么的?有的资料上说是去掉空白字符,是不是把空格,制表符,回车等都去掉,能不能详细一点?
2 回答
弑天下
TA贡献1818条经验 获得超8个赞
Java String.trim()方法用法实例教程,该方法返回一个复制该字符串的开头和结尾的白色空格去掉,或字符串,如果它没有头或尾空白.
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { // string with leading and trailing white space String str = " This is YiiBai " ; System.out.print( "Before trim = " ); System.out.println( ".." + str + ".." ); // leading and trailing white space removed System.out.print( "After trim = " ); System.out.println( ".." + str.trim() + ".." ); } } |
添加回答
举报
0/150
提交
取消