标签:hello trim bst nbsp ace 方法 div java学习笔记 code
了解到这两个函数是因为在做OJ的题目时遇到了这样的情况:
标注输入为:4 abc
两种数据用空格分隔开,但找不到只读一个字符的方法(吃掉中间的空格)
trim(): 去掉字符串首尾的空格
String str=" Hello World "; str=str.trim();// 执行该语句后,str的值为"Hello World"
str=str.substring(m);//截取掉str从首字母起长度为m的字符串,将剩余字符串赋值给str;
String space=" "; String str=" Hello World "; str=str.substring(space.length);//执行该语句后str的值为"Hello World "
str=str.substring(m,n);//截取str中从m开始至n结束时的字符串,并将其赋值给str;
标签:hello trim bst nbsp ace 方法 div java学习笔记 code
原文地址:http://www.cnblogs.com/PaperKiteGuo/p/7498593.html