码迷,mamicode.com
首页 > 其他好文 > 详细

使用正则表达式匹配省略号

时间:2014-11-14 21:14:14      阅读:392      评论:0      收藏:0      [点我收藏+]

标签:des   io   os   使用   sp   java   for   on   2014   

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);
		}
	}
}

使用正则表达式匹配省略号

标签:des   io   os   使用   sp   java   for   on   2014   

原文地址:http://blog.csdn.net/shijiebei2009/article/details/41123209

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!