❶ java去空格
java去掉空格,主要使用string的替換方法,如下:
1.String.trim()
trim()是去掉首尾空格
2.str.replace("","");去掉所有空格,包括首尾、中間
Stringstr="hello";
Stringstr2=str.replaceAll("","");
System.out.println(str2);
3.或者replaceAll("+","");去掉所有空格
4.str=.replaceAll("\s*","");
可以替換大部分空白字元,不限於空格
s可以匹配空格、製表符、換頁符等空白字元的其中任意一個
5.或者下面的代碼也可以去掉所有空格,包括首尾、中間
publicStringremove(Stringresource,charch)
{
StringBufferbuffer=newStringBuffer();
intposition=0;
charcurrentChar;
while(position<resource.length())
{
currentChar=resource.charAt(position++);
if(currentChar!=ch)buffer.append(currentChar);}returnbuffer.toString();
}
❷ java如何去除字元串中的空格並且計算字元串中漢字的個數
去除空格,可以一個一個判斷,是空格則刪除;也可以用split("
"),用空格來分割字元串,然後把分割後的字元串再拼接起來,不過我不確定這種方法在分割後的數組中會不會還有空格。。。
計算漢字個數,好像是用正則表達式匹配,還是編碼值之類的。可能是用正則表達式時,就是利用了編碼值。這個應該可以搜到的。
我當時用的就是這樣方法,沒有找到更好的方法了。
❸ java中去除字元串中 所有 的空格!
StringTokenizer這個類已經是Java不推薦使用的了。如果真想去除字元串所有空格,請用這個方法。
publicclassStringTo{
publicstaticvoidmain(String[]args){
Stringstring="Wearestudents";
System.out.println("原字元串是:");
System.out.println(string);
StringnewString=string.replaceAll("","");
System.out.println("去掉字元串所有空格後的字元串是:");
System.out.println(newString);
}
}
❹ java如何刪除字元串的空格
java刪除字元串的空格:
1、刪除字元串前後的空格,使用字元串提供的方法trim()去除;例:String s=" aa "; s=s.trim(); s="aa";
2、刪除字元串前後的空格,使用字元串提供的方法replace()替換掉空格,該方法有兩個參數,參數一表示你要替換的目標字元串,參數二表示你要把目標字元串替換成什麼字元串;例:String s=" a a "; s=s.replace(" ",""); s="aa";我們把目標字元串空格,替換成空字元,就實現了去除空格
❺ java 怎麼去掉字元中的空格
String.trim() trim()是去掉首尾空格
str.replace(" ", ""); 去掉所有空格,包括首尾、中間
❻ java怎樣去掉字元串內的空白
java去掉字元串內的空白有首發空白,中間空白及全部空白。可以根據需要通過下面的方法進行去掉。
方法如下:
1.String.trim()
trim()是去掉首尾空格
2.str.replace("","");去掉所有空格,包括首尾、中間
Stringstr="hello";
Stringstr2=str.replaceAll("","");
System.out.println(str2);
3.或者replaceAll("+","");去掉所有空格
4.str=.replaceAll("\s*","");
可以替換大部分空白字元,不限於空格
s可以匹配空格、製表符、換頁符等空白字元的其中任意一個
5.或者下面的代碼也可以去掉所有空格,包括首尾、中間
publicStringremove(Stringresource,charch)
{
StringBufferbuffer=newStringBuffer();
intposition=0;
charcurrentChar;
while(position
{
currentChar=resource.charAt(position++);
if(currentChar!=ch)buffer.append(currentChar);}returnbuffer.toString();
}
❼ java去除字元串的空格(有條件的去除)
第一第三
/*trim()是去掉首尾空格 。具體的例子如下:*/
String strCom=" JA VA "; //定義字元串
String str=strCom.trim(); //去除字元串前後的空格
System.out.println("未去除前後空格的字元串:"+strCom);
System.out.println("去除前後空格後的字元串:"+str);
第二
/*str.replace(" ", ""); 去掉所有空格,包括首尾、中間*/
String str1 = " ";
String str2 = str1.replaceAll(" ", "");
System.out.println(str2+","+str2.length());