摘要: JAVA中去掉空格1. String.trim()trim()是去掉首尾空格2.str.replace(" ", ""); 去掉所有空格,包括首尾、中间String str = " hell o ";String str2 = str.replaceAll(" ", "");System.out.println(str2);3.或者replaceAll(" +",""); 去掉所有空格4.str = .replaceAll("\\s*" 阅读全文
posted @ 2013-09-17 11:21 怜幺 阅读(1581) 评论(0) 推荐(0)