扫码一下
查看教程更方便
trim() 方法返回字符串的副本,省略了前面和末尾空格。
public String trim()
无
返回此字符串的副本,其中删除了前面和末尾空格,或者如果它两端没有空格,则返回此字符串。
public class Main { public static void main(String args[]) { String Str = new String(" Welcome to jiyik.com "); System.out.print("Return Value :" ); System.out.println(Str.trim() ); } }
上面示例编译运行结果如下
Return Value :Welcome to jiyik.com