前端之家收集整理的这篇文章主要介绍了
使用正则表达式匹配省略号,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package cn.edu.shu.util;
import org.junit.Test;
/**
*
* <p>
* ClassName MatchApostrophe
* </p>
* <p>
* Description 该类用来使用正则表达式匹配省略号,但是非常奇怪的是eclipse中省略号有两种不同的形式,见下面,那么当我文本里有省略号出现的时候,我不知道其读到eclipse中是哪种形式,<br/>
* 所以我都需要进行匹配
* </p>
*
* @author wangxu wangx89@126.com
* <p>
* Date 2014年11月14日 下午5:49:51
* </p>
* @version V1.0
*
*/
public class MatchApostrophe {
@Test
public void testApostrophe() {
String str1 = "第一种形式的……这是尾巴";
String str2 = "第二种形式的......这是尾巴";
String test = "头部正在流血……/......5分钟后交警赶到现场";
String testStr = test.replaceAll("(…{2})","。").replaceAll("(\\.{6})","。");
System.out.println(testStr);
String[] split = str1.split("(\\…{2})");//匹配第一种省略号
String[] split2 = str2.split("(\\.{6})");//匹配第二种省略号
for (String s : split) {
System.out.println(s);
}
System.out.println("---------------------------------");
for (String s : split2) {
System.out.println(s);
}
}
}
原文链接:https://www.f2er.com/regex/361075.html