迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Java >

如何在 Java 中删除字符串中的空格

作者:迹忆客 最近更新:2023/05/16 浏览次数:

本教程介绍了如何在 Java 中从字符串中删除空格,并列举了一些示例代码来了解空格删除过程。


在 Java 中如何删除字符串中的空白处

空格是指在字符串中表示一个空格的字符,它可以是" "\n、\t 等。要从字符串中删除这些字符,有几种方法,例如 replace() 方法,replaceAll()regex 等。让我们看看下面的例子。


在 Java 中使用 replaceAll() 删除空白字符

在这里,我们使用 String 类的 replaceAll() 方法来删除空格。这个方法使用一个 regex 作为参数,并在去除所有空白后返回一个字符串。

public class SimpleTesting {

	public static void main(String[] args) {
		String str = "Programming is easy to learn";
		String result = str.replaceAll("\\s+","");
		System.out.println(result);
	}
}

输出:

Programminiseasytolearn

在 Java 中使用 Apache 库删除 whitespace

如果你使用 Apache 库,那么可以使用 StringUtils 类的 deleteWhitespace() 方法在 Java 中删除字符串中的空白。请看下面的例子和输出。

import org.apache.commons.lang3.StringUtils;

public class SimpleTesting {

	public static void main(String[] args) {
		String str = "Programming is easy to learn";
		String result = StringUtils.deleteWhitespace(str);
		System.out.println(result);
	}
}

输出:

Programminiseasytolearn

在 Java 中使用 Pattern 和 Matcher 删除空白字符

我们可以使用 PatternMatcher 类与 replaceAll() 方法来删除 Java 字符串中的所有空格。

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class SimpleTesting {

	public static void main(String[] args) {
		String str = "Programming is easy to learn";
		Pattern p = Pattern.compile("[\\s]");
        Matcher m = p.matcher(str);
        String result = m.replaceAll("");
		System.out.println(result);
	}
}

输出:

Programminiseasytolearn

在 Java 中删除字符串中的空格

如果你只想从一个字符串中删除空格,那么使用 String 类的 replace() 方法。在 Java 中,它将替换掉字符串中所有的空格(不是所有的空白符号,比如\t,\n 不会被删除。)。

public class SimpleTesting {

	public static void main(String[] args) {
		String str = "Programming is easy to learn";
        String result = str.replace(" ", "");
		System.out.println(result);
	}
}

输出:

Programminiseasytolearn

在 Java 中使用 Apache 删除空格

在这里,我们使用 ApacheStringUtils 类的 replace() 方法来替换 Java 中字符串的所有空格。

import org.apache.commons.lang3.StringUtils;

public class SimpleTesting {

	public static void main(String[] args) {
		String str = "Programming is easy to learn";
        String result = StringUtils.replace(str, " ", "");
		System.out.println(result);
	}
}

输出:

Programminiseasytolearn

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Do you understand JavaScript closures?

发布时间:2025/02/21 浏览次数:108 分类:JavaScript

The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.

Do you know about the hidden traps in variables in JavaScript?

发布时间:2025/02/21 浏览次数:178 分类:JavaScript

Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av

How much do you know about the Prototype Chain?

发布时间:2025/02/21 浏览次数:150 分类:JavaScript

The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start

如何从 Pandas 的日期时间列中提取月份和年份

发布时间:2024/04/23 浏览次数:160 分类:Python

我们可以分别使用 dt.year()和 dt.month()方法从 Datetime 列中提取出年和蛾。我们还可以使用 pandas.DatetimeIndex.month 以及 pandas.DatetimeIndex.year 和 strftime()方法提取年份和月份。

如何获取 Pandas DataFrame 的行数

发布时间:2024/04/23 浏览次数:71 分类:Python

本教程介绍如何通过使用 shape,len()来获取 Pandas DataFrame 的行数,以及有多少行元素满足条件。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便