.net 匹配所有标点符号 java 匹配所有标点符号
摘要:
static void Main(string[] args) { Regex regex=new Regex("\\p{P}"); String str = " ;。、,!\"#$%&'*+,-./:;<=>?@[\\]^_`{|}~"; MatchCollection mc=regex.Matches(str); if (mc != null && mc.Count != 0) { foreach (Match m in mc)... 阅读全文
posted @ 2012-08-02 17:22 雨渐渐 阅读(365) 评论(0) 推荐(0) 编辑