黑马程序员技术交流社区

标题: 自定义方法,能够去除字符串两端的空格。 [打印本页]

作者: 炙爱小爱    时间: 2016-4-6 10:38
标题: 自定义方法,能够去除字符串两端的空格。
class Demo
{
        public static void sop(String str)
        {
                System.out.println(str);
        }
        public static void main(String[] args)
        {
                String s = "         afssg  sdgsd      ";
                sop("("+s+")");
                s = myTrim(s);
                sop("("+s+")");
        }
        public static String myTrim(String str)
        {
                int pos = 0,end = str.length()-1;
               
                while(pos<=end && str.charAt(pos)==' ')
                        pos++;

                while(pos<=end && str.charAt(end)==' ')
                        end--;

                return str.substring(pos,end+1);
        }
}





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2