How to split a string with any whitespace chars as delimiters(如何使用任何空白字符作为分隔符拆分字符串)
问题描述
我需要将什么正则表达式模式传递给 java.lang.String.split()
以使用所有空白字符 (' '
将字符串拆分为子字符串数组>、' '
、'
'
等)作为分隔符?
What regex pattern would need I to pass to java.lang.String.split()
to split a String into an Array of substrings using all whitespace characters (' '
, ' '
, '
'
, etc.) as delimiters?
推荐答案
有些东西
myString.split("\s+");
这会将所有空格分组为分隔符.
This groups all white spaces as a delimiter.
所以如果我有字符串:
"Hello[space character][tab character]World"
这应该产生字符串 Hello"
和 World"
并省略 [space]
和[tab]
.
This should yield the strings "Hello"
and "World"
and omit the empty space between the [space]
and the [tab]
.
正如 VonC 指出的那样,应该转义反斜杠,因为 Java 会首先尝试将字符串转义为特殊字符,然后发送 that 进行解析.你想要的是文字s"
,这意味着,你需要传递\s"
.可能会有点混乱.
As VonC pointed out, the backslash should be escaped, because Java would first try to escape the string to a special character, and send that to be parsed. What you want, is the literal "s"
, which means, you need to pass "\s"
. It can get a bit confusing.
\s
等价于 [ \t\n\x0B\f\r]
.
这篇关于如何使用任何空白字符作为分隔符拆分字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用任何空白字符作为分隔符拆分字符串
基础教程推荐
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01