java - 如何拆分字符串,同时保留分隔符?
Posted zhangjin1120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java - 如何拆分字符串,同时保留分隔符?相关的知识,希望对你有一定的参考价值。
- 目标:将
I have a good friend. shi is beautiful!
拆分成I have a good friend.
和she is beautiful!
,拆分符号是.
(点后面有个空格)。 - 困难:普通的split()会把
.
去掉。 - 解决方案:
str.split("(?<=\\\\. )");
- 测试下:
public static void main(String[] args) {
String str = "I have a good friend. shi is beautiful!";
String[] s1 = str.split("\\\\. ");
for (String string : s1) {
System.out.println(string);
}
System.out.println("");
System.out.println("");
String[] s2 = str.split("(?<=\\\\. )");
for (String string : s2) {
System.out.println(string);
}
}
以上是关于java - 如何拆分字符串,同时保留分隔符?的主要内容,如果未能解决你的问题,请参考以下文章