码迷,mamicode.com
首页 > 编程语言 > 详细

JavaSE8基础 String trim 去除字符串两端的空格

时间:2017-09-03 12:19:55      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:手册   技术分享   rgs   ase   int   oid   UI   windows   pac   



    os :windows7 x64
    jdk:jdk-8u131-windows-x64
    ide:Eclipse Oxygen Release (4.7.0)
    
    
code:

package jizuiku.t02;

public class Demo3 {
	public static void main(String[] args) {
		String s1 = " h ell wor l d  ";
		
		//去除字符串两头的空格
		System.out.println(s1.trim());
	}
}

 


result:
技术分享

 

    


Java优秀,值得学习。
学习资源:API手册+Java源码+清净的心地。

JavaSE8基础 String trim 去除字符串两端的空格

标签:手册   技术分享   rgs   ase   int   oid   UI   windows   pac   

原文地址:http://www.cnblogs.com/jizuiku/p/7469121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!