溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

String中刪除空格的方法有哪些

發(fā)布時間:2022-02-25 10:31:18 來源:億速云 閱讀:145 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“String中刪除空格的方法有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“String中刪除空格的方法有哪些”吧!

在java中從字符串中刪除空格的不同方法

首先,我們來看一下,想要從String中移除空格部分,有多少種方法,作者根據(jù)經(jīng)驗,總結(jié)了以下7種(JDK原生自帶的方法,不包含第三方工具類庫中的類似方法):

  • trim() : 刪除字符串開頭和結(jié)尾的空格。

  • strip() : 刪除字符串開頭和結(jié)尾的空格。

  • stripLeading() : 只刪除字符串開頭的空格

  • stripTrailing() : 只刪除字符串的結(jié)尾的空格

  • replace() : 用新字符替換所有目標(biāo)字符

  • replaceAll() : 將所有匹配的字符替換為新字符。此方法將正則表達(dá)式作為輸入,以標(biāo)識需要替換的目標(biāo)子字符串

  • replaceFirst() : 僅將目標(biāo)子字符串的第一次出現(xiàn)的字符替換為新的字符串

需要注意的最重要的一點是,在 Java 中String對象是不可變的,這意味著我們不能修改字符串,因此以上所有的方法我們得到的都是一個新的字符串。

接下啦,我們分別針對以上這幾個方法學(xué)習(xí)下用法,了解下其特性。

PS:本文代碼都是使用在線運(yùn)行工具執(zhí)行的,因為我的測試機(jī)并未安裝 Java 11,并且Unicode字符也不完整。如果大家也想實驗,建議使用在線工具,選擇對應(yīng)的 JDK 即可。

trim

trim()是  Java 開發(fā)人員最常用的刪除字符串開頭和結(jié)尾的空格方法。其用法也比較簡單:

public class StringTest {


    public static void main(String[] args) {


        String stringWithSpace = "   Hollis   Is   A   Java   Coder   ";


        StringTest.trimTest(stringWithSpace);


    }


    private static void trimTest(String stringWithSpace){


        System.out.println("Before trim : \'" + stringWithSpace + "\'");


        String stringAfterTrim = stringWithSpace.trim();


        System.out.println("After trim : \'" + stringAfterTrim + "\'");


    }


}

輸出結(jié)果:

Before trim : '   Hollis   Is   A   Java   Coder   '


After trim : 'Hollis   Is   A   Java   Coder'

如上,使用 trim 之后,原字符串中開頭和結(jié)尾部分的空格內(nèi)容都被移除掉了。

但是不知道大家有沒有思考過,trim方法移除的空白內(nèi)容都包含哪些東西?除了空格以外,還有其他的字符嗎?

其實,trim移除的空白字符指的是指ASCII值小于或等于32的任何字符(' U+0020 ')

其中包含了空格、換行、退格等字符。

strip()

不知道大家有沒有注意到,在Java 11的發(fā)行版中,添加了新的strip()方法來刪除字符串中的前導(dǎo)和末尾空格。

已經(jīng)有了一個trim方法,為什么還要新增一個strip呢?

這其實是是因為trim方法只能針對ASCII值小于等于32的字符進(jìn)行移除,但是根據(jù)Unicode標(biāo)準(zhǔn),除了ASCII中的字符以外,還是有很多其他的空白字符的。

而且為了識別這些空格字符,從 Java 1.5 開始,還在Character類中添加了新的isWhitespace(int)方法。該方法使用unicode來標(biāo)識空格字符。你可以在jkorpela.fi/chars/spaces.html 了解更多關(guān)于unicode空格字符的信息。

而在 Java 11 中新增的這個strip方法就是使用這個Character.isWhitespace(int)方法來判斷是否為空白字符并刪除它們的:

下面我們來看一個使用strip例子:

public class StringTest {


    public static void main(String args[]) {


      String stringWithSpace ='\u2001' + "  Hollis   Is   A   Java   Coder  " + '\u2001';


        System.out.println("'" + '\u2001' + "' is space : " +  Character.isWhitespace('\u2001'));


        StringTest.stripTest(stringWithSpace);


    }


    private static void stripTest(String stringWithSpace){


        System.out.println("Before strip : \'" + stringWithSpace + "\'");


        String stringAfterTrim = stringWithSpace.strip();


        System.out.println("After strip : \'" + stringAfterTrim + "\'");


    }


}

我們在字符串前后都增加了一個特殊的字符\u2001,這個字符是不在ASCII中的,經(jīng)過Character.isWhitespace判斷他是一個空白字符。然后使用strip進(jìn)行處理,輸出結(jié)果如下:

'?' is space : true


Before strip : '   Hollis   Is   A   Java   Coder   '


After strip : 'Hollis   Is   A   Java   Coder'

所以,Java 11 中的 strip 方法要比trim方法更加強(qiáng)大,他可以移除很多不在ASCII中的空白字符,判斷方式就是通過Character.isWhitespace方法。

stripLeading() 和 stripTrailing()

stripLeading()和stripTrailing()方法也都是在Java 11中添加的。作用分別是刪除字符串的開頭的空格以及刪除字符串的末尾的空格。

strip方法類似,stripLeading、stripTrailing也使用Character.isWhitespace(int)來標(biāo)識空白字符。用法也和strip類似:

public class StringTest {


    public static void main(String args[]) {


      String stringWithSpace ='\u2001' + "  Hollis   Is   A   Java   Coder  " + '\u2001';


        System.out.println("'" + '\u2001' + "' is space : " +  Character.isWhitespace('\u2001'));


        StringTest.stripLeadingTest(stringWithSpace);


        StringTest.stripTrailingTest(stringWithSpace);


    }




    private static void stripLeadingTest(String stringWithSpace){


        System.out.println("Before stripLeading : \'" + stringWithSpace + "\'");


        String stringAfterTrim = stringWithSpace.stripLeading();


        System.out.println("After stripLeading : \'" + stringAfterTrim + "\'");


    }




     private static void stripTrailingTest(String stringWithSpace){


        System.out.println("Before stripTrailing : \'" + stringWithSpace + "\'");


        String stringAfterTrim = stringWithSpace.stripTrailing();


        System.out.println("After stripTrailing : \'" + stringAfterTrim + "\'");


    }


}

輸出結(jié)果:

'?' is space : true


Before stripLeading : '   Hollis   Is   A   Java   Coder   '


After stripLeading : 'Hollis   Is   A   Java   Coder   '


Before stripTrailing : '   Hollis   Is   A   Java   Coder   '


After stripTrailing : '   Hollis   Is   A   Java   Coder'

replace

移除字符串中的空白字符,除了使用trim、strip以外,還有一個辦法,那就是使用replace方法把其中的空白字符替換掉。

replace是從java 1.5中添加的,可以用指定的字符串替換每個目標(biāo)子字符串。

此方法替換所有匹配的目標(biāo)元素,使用方式如下:

 public class StringTest {


    public static void main(String args[]) {


        String stringWithSpace ="  Hollis   Is   A   Java   Coder  ";


        StringTest.replaceTest(stringWithSpace);


    }






    private static void replaceTest(String stringWithSpace){


        System.out.println("Before replace : \'" + stringWithSpace + "\'");


        String stringAfterTrim = stringWithSpace.replace(" ", "");


        System.out.println("After replace : \'" + stringAfterTrim + "\'");


    }


}

結(jié)果:

Before replace : '  Hollis   Is   A   Java   Coder  '


After replace : 'HollisIsAJavaCoder'

可見,以上使用replace方法可以替換掉字符串中的所有空白字符。特別需要注意的是,replace方法和trim方法一樣,只能替換掉ASCII中的空白字符。

replaceAll

replaceAll是 Java 1.4 中添加的最強(qiáng)大的字符串操作方法之一。我們可以將這種方法用于許多目的。

使用replaceAll()方法,我們可以使用正則表達(dá)式來用來識別需要被替換的目標(biāo)字符內(nèi)容。使用正則表達(dá)式,就可以實現(xiàn)很多功能,如刪除所有空格,刪除開頭空格,刪除結(jié)尾空格等等。

我們只需要用正確的替換參數(shù)創(chuàng)建正確的正則表達(dá)式。一些正則表達(dá)式的例子如下:

\s+   所有的空白字符


^\s+      字符串開頭的所有空白字符


\s+$      字符串結(jié)尾的所有空白字符

注意,在 java 中要添加/我們必須使用轉(zhuǎn)義字符,所以對于\s+ 我們必須使用\\s+

public class StringTest {


    public static void main(String args[]) {


        String stringWithSpace ="  Hollis   Is   A   Java   Coder  ";


        StringTest.replaceAllTest(stringWithSpace," ");


        StringTest.replaceAllTest(stringWithSpace,"\\s+");


        StringTest.replaceAllTest(stringWithSpace,"^\\s+");


        StringTest.replaceAllTest(stringWithSpace,"\\s+$");


    }




    private static void replaceAllTest(String stringWithSpace,String regex){


        System.out.println("Before replaceAll with '"+ regex +"': \'" + stringWithSpace + "\'");


        String stringAfterTrim = stringWithSpace.replaceAll(regex, "");


        System.out.println("After replaceAll with '"+ regex +"': \'" + stringAfterTrim + "\'");


    }


}

結(jié)果:

Before replaceAll with ' ': '  Hollis   Is   A   Java   Coder  '


After replaceAll with ' ': 'HollisIsAJavaCoder'


Before replaceAll with '\s+': '  Hollis   Is   A   Java   Coder  '


After replaceAll with '\s+': 'HollisIsAJavaCoder'


Before replaceAll with '^\s+': '  Hollis   Is   A   Java   Coder  '


After replaceAll with '^\s+': 'Hollis   Is   A   Java   Coder  '


Before replaceAll with '\s+$': '  Hollis   Is   A   Java   Coder  '


After replaceAll with '\s+$': '  Hollis   Is   A   Java   Coder'

正如我們所看到的,如果將replaceAll()與適當(dāng)?shù)恼齽t表達(dá)式一起使用,它將是非常強(qiáng)大的方法。

replaceFirst

replaceFirst方法也是在 java 1.4 中添加的,它只將給定正則表達(dá)式的第一個匹配項替換為替換字符串。

如果您只需要替換第一次出現(xiàn)的情況,那么這個方法非常有用。例如,如果我們只需要刪除前導(dǎo)空格,我們可以使用\\s+^\\s+。

我們還可以通過使用\\s+$正則表達(dá)式使用此方法來刪除末尾空格。因為這個表達(dá)式將只匹配行的最后一個空格。因此最后的空格被認(rèn)為是這個方法的第一個匹配。

讓我們舉一個從字符串中刪除前導(dǎo)和尾隨空格的例子

public class StringTest {


    public static void main(String args[]) {


        String stringWithSpace ="  Hollis   Is   A   Java   Coder  ";


        StringTest.replaceFirstTest(stringWithSpace," ");


        StringTest.replaceFirstTest(stringWithSpace,"\\s+");


        StringTest.replaceFirstTest(stringWithSpace,"^\\s+");


        StringTest.replaceFirstTest(stringWithSpace,"\\s+$");


    }




    private static void replaceFirstTest(String stringWithSpace,String regex){


        System.out.println("Before replaceFirst with '"+ regex +"': \'" + stringWithSpace + "\'");


        String stringAfterTrim = stringWithSpace.replaceFirst(regex, "");


        System.out.println("After replaceFirst with '"+ regex +"': \'" + stringAfterTrim + "\'");


    }


}

結(jié)果:

Before replaceFirst with ' ': '  Hollis   Is   A   Java   Coder  '


After replaceFirst with ' ': ' Hollis   Is   A   Java   Coder  '


Before replaceFirst with '\s+': '  Hollis   Is   A   Java   Coder  '


After replaceFirst with '\s+': 'Hollis   Is   A   Java   Coder  '


Before replaceFirst with '^\s+': '  Hollis   Is   A   Java   Coder  '


After replaceFirst with '^\s+': 'Hollis   Is   A   Java   Coder  '


Before replaceFirst with '\s+$': '  Hollis   Is   A   Java   Coder  '


After replaceFirst with '\s+$': '  Hollis   Is   A   Java   Coder'

到此,相信大家對“String中刪除空格的方法有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI