从String中移除空白字符的多种方式!?差别竟然这么大!

字符串,是Java中最常用的一个数据类型了。我们在日常开发时候会经常使用字符串做很多的操作。比如字符串的拼接、截断、替换等。

这一篇文章,我们介绍一个比较常见又容易被忽略的一个操作,那就是移除字符串中的空格。

其实,在Java中从字符串中删除空格有很多不同的方法,如trim,replaceAll等。但是,在Java 11添加了一些新的功能,如strip、stripLeading、stripTrailing等。

大多数时候,我们只是使用trim方法来删除多余的空格。但是好像很多人并没有去思考过,是否有更好的方式呢?

当然,trim()在大多数情况下都工作得很好,但是Java中有许多不同的方法。每一种都有自己的优点和缺点。我们如何决定哪种方法最适合我们呢?

接下来我们将介绍几种方法,并对比下他们的区别和优缺点等。

在java中从字符串中删除空格的不同方法

首先,我们来看一下,想要从String中移除空格部分,有多少种方法,作者根据经验,总结了以下7种(JDK原生自带的方法,不包含第三方工具类库中的类似方法):

  • trim() : 删除字符串开头和结尾的空格。

  • strip() : 删除字符串开头和结尾的空格。

  • stripLeading() : 只删除字符串开头的空格

  • stripTrailing() : 只删除字符串的结尾的空格

  • replace() : 用新字符替换所有目标字符

  • replaceAll() : 将所有匹配的字符替换为新字符。此方法将正则表达式作为输入,以标识需要替换的目标子字符串

  • replaceFirst() : 仅将目标子字符串的第一次出现的字符替换为新的字符串

需要注意的最重要的一点是,在Java中String对象是不可变的,这意味着我们不能修改字符串,因此以上所有的方法我们得到的都是一个新的字符串。

接下啦,我们分别针对以上这几个方法学习下用法,了解下其特性。

PS:本文代码都是使用在线运行工具(https://www.jdoodle.com/online-java-compiler/ )执行的,因为我的测试机并未安装Java 11,并且Unicode字符也不完整。如果大家也想实验,建议使用在线工具,选择对应的JDK即可。

trim

trim()是Java开发人员最常用的删除字符串开头和结尾的空格方法。其用法也比较简单:

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 + "\'");}}

输出结果:

Before trim : '   Hollis   Is   A   Java   Coder   'After trim : 'Hollis   Is   A   Java   Coder'

如上,使用trim之后,原字符串中开头和结尾部分的空格内容都被移除掉了。

但是不知道大家有没有思考过,trim方法移除的空白内容都包含哪些东西?除了空格以外,还有其他的字符吗?

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

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

strip()

不知道大家有没有注意到,在Java 11的发行版中,添加了新的strip()方法来删除字符串中的前导和末尾空格。

已经有了一个trim方法,为什么还要新增一个strip呢?

这其实是是因为trim方法只能针对ASCII值小于等于32的字符进行移除,但是根据Unicode标准,除了ASCII中的字符以外,还是有很多其他的空白字符的。

而且为了识别这些空格字符,从Java 1.5开始,还在Character类中添加了新的isWhitespace(int)方法。该方法使用unicode来标识空格字符。你可以在http://jkorpela.fi/chars/spaces.html 了解更多关于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中的,经过Character.isWhitespace判断他是一个空白字符。然后使用strip进行处理,输出结果如下:

' ' is space : trueBefore strip : '   Hollis   Is   A   Java   Coder   'After strip : 'Hollis   Is   A   Java   Coder'

所以,Java 11 中的 strip 方法要比trim方法更加强大,他可以移除很多不在ASCII中的空白字符,判断方式就是通过Character.isWhitespace方法。

trim 和 strip 方法的区别

上面我们介绍了两个都可以移除字符串开头和结尾的方法,分别是trim 和 strip,再来对比下他们的区别:

stripLeading() 和 stripTrailing()

stripLeading()和stripTrailing()方法也都是在Java 11中添加的。作用分别是删除字符串的开头的空格以及删除字符串的末尾的空格。

与strip方法类似,stripLeading、stripTrailing也使用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.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 + "\'");}}

输出结果:

' ' is space : trueBefore 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中添加的,可以用指定的字符串替换每个目标子字符串。

此方法替换所有匹配的目标元素,使用方式如下:

 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 + "\'");}}

结果:

Before replace : '  Hollis   Is   A   Java   Coder  'After replace : 'HollisIsAJavaCoder'

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

replaceAll

replaceAll是Java 1.4中添加的最强大的字符串操作方法之一。我们可以将这种方法用于许多目的。

使用replaceAll()方法,我们可以使用正则表达式来用来识别需要被替换的目标字符内容。使用正则表达式,就可以实现很多功能,如删除所有空格,删除开头空格,删除结尾空格等等。

我们只需要用正确的替换参数创建正确的正则表达式。一些正则表达式的例子如下:

\s+   所有的空白字符^\s+      字符串开头的所有空白字符\s+$      字符串结尾的所有空白字符

注意,在java中要添加/我们必须使用转义字符,所以对于\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 + "\'");}}

结果:

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()与适当的正则表达式一起使用,它将是非常强大的方法。

replaceFirst

replaceFirst方法也是在java 1.4中添加的,它只将给定正则表达式的第一个匹配项替换为替换字符串。

如果您只需要替换第一次出现的情况,那么这个方法非常有用。例如,如果我们只需要删除前导空格,我们可以使用\\s+或^\\s+。

我们还可以通过使用\\s+$正则表达式使用此方法来删除末尾空格。因为这个表达式将只匹配行的最后一个空格。因此最后的空格被认为是这个方法的第一个匹配。

让我们举一个从字符串中删除前导和尾随空格的例子

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 + "\'");}}

结果:

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'

总结

本文介绍了7种移除字符串中的空白字符的方法。

想要直接移除掉字符串开头的空白字符,可以使用stripLeading、replaceAll和replaceFirst

想要直接移除掉字符串末尾的空白字符,可以使用stripTrailing、replaceAll和replaceFirst

想要同时移除掉字符串开头和结尾的空白字符,可以使用strip、trim

想要移除掉字符串中的所有空白字符,可以使用replace和replaceAll

而Java 11种新增的strip、stripTrailing以及stripLeading方法,可以移除的字符要比其他方法多,他可以移除的空白字符不仅仅局限于ASCII中的字符,而是Unicode中的所有空白字符,具体判断方式可以使用Character.isWhitespace进行判断。


往期推荐

推荐一款开源数据库设计工具,比PowerDesigner更好用!


Socket粘包问题的3种解决方案,最后一种最完美!


SpringBoot集成Google开源图片处理框架,贼好用!


关注我,每天陪你进步一点点!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545062.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[JS][jQuery]清空元素html()、innerHTML= 与 empty()的区别 、remove()区别

清空元素html("")、innerHTML"" 与 empty()的区别 一、清空元素的区别 1、错误做法一: $("#test").html("");//该做法会导致内存泄露 2、错误做法二:$("#test")[0].innerHTML"&qu…

Properties文件位置

这种情况下Properties文件放在和‘当前类’同一目录下 <span style"font-size:14px;">Properties p new Properties(); InputStream in 当前类.class.getResourceAsStream("Properties文件名"); p.load(in); </span> 这种情况下Prop…

Java类class isAnnotation()方法及示例

类的类isAnnotation()方法 (Class class isAnnotation() method) isAnnotation() method is available in java.lang package. isAnnotation()方法在java.lang包中可用。 isAnnotation() method is used to check whether this Class object represents the annotation type or…

不要再用main方法测试代码性能了,用这款JDK自带工具

前言作为软件开发人员&#xff0c;我们通常会写一些测试程序用来对比不同算法、不同工具的性能问题。而最常见的做法是写一个main方法&#xff0c;构造模拟场景进行并发测试。如果细心的朋友可能已经发现&#xff0c;每次测试结果误差很大&#xff0c;有时候测试出的结果甚至与…

读书总结:周鸿祎,我的互联网方法论

目录&#xff1a;1、欢迎来到互联网时代2、互联网用户至上3、颠覆式创新4、免费时代5、体验为王6、互联网方法论第一章&#xff1a;互联网时代1、没人能打败趋势&#xff0c;趋势会导致非线性发展。2、信息的流通变快&#xff0c;商家很难利用非对称性赚钱。3、用户的体验最重要…

Java ClassLoader getResources()方法与示例

ClassLoader类的getResources()方法 (ClassLoader Class getResources() method) getResources() method is available in java.lang package. getResources()方法在java.lang包中可用。 getResources() method is used to identify all the resources with the given resource…

Java中Properties类的操作

http://www.cnblogs.com/bakari/p/3562244.html Java中Properties类的操作 知识学而不用&#xff0c;就等于没用&#xff0c;到真正用到的时候还得重新再学。最近在看几款开源模拟器的源码&#xff0c;里面涉及到了很多关于Properties类的引用&#xff0c;由于Java已经好久没用…

复盘线上的一次OOM和性能优化!

来源&#xff1a;r6d.cn/ZazN上周五&#xff0c;发布前一周的服务器小动荡????事情回顾上周五&#xff0c;通过Grafana监控&#xff0c;线上环境突然出现CPU和内存飙升的情况&#xff1a;但是看到网络输入和输入流量都不是很高&#xff0c;所以网站被别人攻击的概率不高&am…

scanf 输入十六进制_在C语言中使用scanf()输入一个十六进制值

scanf 输入十六进制Here, we have to declare an unsigned int variable and input a value in hexadecimal format. 在这里&#xff0c;我们必须声明一个无符号的int变量&#xff0c;并以十六进制格式输入一个值。 To input a value in hexadecimal format – we use "%…

阅读源码的 4 个绝技,我必须分享给你!

为什么要阅读源码&#xff1f;1.在通用型基础技术中提高技术能力在 JAVA 领域中包含 JAVA 集合、Java并发(JUC)等&#xff0c; 它们是项目中使用的高频技术&#xff0c;在各种复杂的场景中选用合适的数据结构、线程并发模型&#xff0c;合理控制锁粒度等都能显著提高应用程序的…

微信公众号开发 ssl connect error

微信获取公众号授权失败 &#xff1a;ssl connect error 本人用的是微擎&#xff0c;也是刚入手&#xff0c;碰到这个问题感觉很棘手。 通过一步步调试发现问题出在curl 认证这里&#xff0c;得到结果错误代码&#xff1a;35&#xff0c;错误信息就是&#xff1a;ssl connect …

struts2的java.lang.NoSuchMethodException异常处理

不久前在学习struts时出现这个错误&#xff0c;在网上搜索了半天&#xff0c;发现答案不一。将其总结如下&#xff0c;以方便大家参考。 1、 你有没有试试看 其它的方法能不能用&#xff0c;要是都是这种情况的话&#xff0c;可能是你的Action类没有继承structs里面的DispatchA…

Java String indexOf(int ch)方法与示例

字符串indexOf(int ch)方法 (String indexOf(int ch) Method) indexOf(int ch) is a String method in Java and it is used to get the index of a specified character in the string. indexOf(int ch)是Java中的String方法&#xff0c;用于获取字符串中指定字符的索引。 If…

innerHTML、innerText和outerHTML、outerText的区别

1、区别描述如下&#xff1a; innerHTML 设置或获取位于对象起始和结束标签内的 HTMLouterHTML 设置或获取对象及其内容的 HTML 形式innerText 设置或获取位于对象起始和结束标签内的文本outerText 设置(包括标签)或获取(不包括标签)对象的文本innerText和outerText在获取时是相…

Socket粘包问题终极解决方案—Netty版(2W字)!

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;上一篇我们写了《Socket粘包问题的3种解决方案》&#xff0c;但没想到评论区竟然炸了。介于大家的热情讨论&#xff0c;以及…

Java高质量代码之 — 泛型与反射

在Java5后推出了泛型,使我们在编译期间操作集合或类时更加的安全,更方便代码的阅读,而让身为编译性语言的Java提供动态性的反射技术,更是在框架开发中大行其道,从而让Java活起来,下面看一下在使用泛型和反射需要注意和了解的事情 1.Java的泛型是类型擦除的 Java中的泛型是…

Java LocalDate类| isLeapYear()方法与示例

LocalDate类isLeapYear()方法 (LocalDate Class isLeapYear() method) isLeapYear() method is available in java.time package. isLeapYear()方法在java.time包中可用。 isLeapYear() method is used to check whether the year field value is a leap year or not based on …

Redis 消息队列的三种方案(List、Streams、Pub/Sub)

现如今的互联网应用大都是采用 分布式系统架构 设计的&#xff0c;所以 消息队列 已经逐渐成为企业应用系统 内部通信 的核心手段&#xff0c;它具有 低耦合、可靠投递、广播、流量控制、最终一致性 等一系列功能。当前使用较多的 消息队列 有 RabbitMQ、RocketMQ、ActiveMQ、K…

JavaScript的求模、取整、小数的取舍

js 求模、整除 主要方法是参考JavaScript Math 对象&#xff0c;列举两个常用方法&#xff1b; floor(x)&#xff1a;对数进行下舍入。 round(x)&#xff1a;把数四舍五入为最接近的整数。 更详细的&#xff1a;http://www.w3school.com.cn/js/jsref_obj_math.asp <spa…

c struct 对齐_C中的struct大小| 填充,结构对齐

c struct 对齐What we know is that size of a struct is the sum of all the data members. Like for the following struct, 我们知道的是&#xff0c; 结构的大小是所有数据成员的总和 。 对于以下结构&#xff0c; struct A{int a;int* b;char c;char *d;};Size of the st…