在此程序中,您將學(xué)習(xí)使用Java中的正則表達式刪除給定字符串中的所有空格。
public class Whitespaces { public static void main(String[] args) { String sentence = "T his is b ett er! www. nhooo. com"; System.out.println("原始句子: " + sentence); sentence = sentence.replaceAll("\\s", ""); System.out.println("替換刪除空格后: " + sentence); } }
運行該程序時,輸出為:
原始句子: T his is b ett er!www. nhooo. com 替換刪除空格后: Thisisbetter!www.soo66.com
在上面程序中,我們使用String的replaceAll()方法刪除和替換字符串sentence中的所有空格。
我們使用正則表達式\\s查找字符串中的所有空白字符(制表符,空格,換行符等)。然后,我們將其替換為""(空字符串文字)。