- 相關(guān)推薦
教你實(shí)現(xiàn)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*", "");
可以替換大部分空白字符, 不限于空格
s 可以匹配空格、制表符、換頁(yè)符等空白字符的其中任意一個(gè)
5.或者下面的代碼也可以去掉所有空格,包括首尾、中間
public String remove(String resource,char ch) { StringBuffer buffer=new StringBuffer(); int position=0; char currentChar; while(position<resource.length()) { currentChar=resource.charAt(position++); if(currentChar!=ch) buffer.append(currentChar); } return buffer.toString(); }
以上就是本文給大家分享的全部?jī)?nèi)容了,希望大家能夠喜歡。
【教你實(shí)現(xiàn)java去掉所有空格】相關(guān)文章:
關(guān)于Java動(dòng)態(tài)實(shí)現(xiàn)的方法08-23
教你JAVA語(yǔ)言快速排序的原理10-04
java通用組合算法如何實(shí)現(xiàn)09-12
java構(gòu)造函數(shù)實(shí)現(xiàn)代碼示例08-23
關(guān)于java實(shí)現(xiàn)http請(qǐng)求工具類示例09-09
Dreamweaver空格使用技巧05-24
講解Java的Socket網(wǎng)絡(luò)編程的多播與廣播實(shí)現(xiàn)09-03
Dreamweaver空格使用的方法技巧06-08