7

我有正则表达式

(\p{P})\1 

成功匹配重复的连续标点符号,例如

;;
,,
\\

,但我需要排除 3 个句点(省略号)标点符号。

...
4

3 回答 3

3

请注意,因为某些方法无法成功匹配表单的字符串.##(即重复标点符号之前的“.”)。假设这是应该匹配的东西。

该解决方案满足以下要求:-

  1. 重复标点匹配。
  2. 省略号 (...) 不匹配。
  3. 匹配两个点 (..) 和四个或更多点。
  4. 重复标点符号在点之前或之后匹配,例如.##

这是正则表达式:

(?>(\p{P})\1+)(?<!([^.]|^)\.{3})

解释:

  • ?>表示原子分组。具体来说,丢弃所有回溯位置。这意味着如果 '...' 匹配失败,则不要退后一步尝试匹配 '..'。
  • (\p{P})\1+)表示匹配 2 个或更多标点符号 - 你已经有了这个。
  • (?<!([^.]|^)\.{3})表示从重复字符匹配的末尾向后搜索,如果您发现三个点前面没有点或字符串的开头,则失败。这使三个点失败,同时允许两个点或四个点或更多工作。

以下测试用例通过并说明使用:

string pattern = @"(?>(\p{P})\1+)(?<!([^.]|^)\.{3})";

//Your examples:
Assert.IsTrue( Regex.IsMatch( @";;", pattern ) );
Assert.IsTrue( Regex.IsMatch( @",,", pattern ) );
Assert.IsTrue( Regex.IsMatch( @"\\", pattern ) );
//two and four dots should match
Assert.IsTrue( Regex.IsMatch( @"..", pattern ) );
Assert.IsTrue( Regex.IsMatch( @"....", pattern ) );

//Some success variations
Assert.IsTrue( Regex.IsMatch( @".;;", pattern ) );
Assert.IsTrue( Regex.IsMatch( @";;.", pattern ) );
Assert.IsTrue( Regex.IsMatch( @";;///", pattern ) );            
Assert.IsTrue( Regex.IsMatch( @";;;...//", pattern ) ); //If you use Regex.Matches the matches contains ;;; and // but not ...
Assert.IsTrue( Regex.IsMatch( @"...;;;//", pattern ) ); //If you use Regex.Matches the matches contains ;;; and // but not ...            

//Three dots should not match
Assert.IsFalse( Regex.IsMatch( @"...", pattern ) );
Assert.IsFalse( Regex.IsMatch( @"a...", pattern ) );
Assert.IsFalse( Regex.IsMatch( @";...;", pattern ) );                        

//Other tests
Assert.IsFalse( Regex.IsMatch( @".", pattern ) );
Assert.IsFalse( Regex.IsMatch( @";,;,;,;,", pattern ) );  //single punctuation does not match                        
Assert.IsTrue( Regex.IsMatch( @".;;.", pattern ) );
Assert.IsTrue( Regex.IsMatch( @"......", pattern ) );                                       
Assert.IsTrue( Regex.IsMatch( @"a....a", pattern ) );
Assert.IsFalse( Regex.IsMatch( @"abcde", pattern ) );     
于 2013-09-19T08:50:42.217 回答
2
(?<!\.)(?!\.{3}(?!\.))(\p{P})\1+

这将匹配任何重复的标点符号(包括....or......等​​),除非它是 string ...。例如:

; -- No Match
;; -- Match
,, -- Match
,,,, -- Match
\\ -- Match
... -- No Match
.... -- Match
于 2013-09-16T10:12:39.730 回答
2

避免匹配...

(?<![.])(?![.]{3})(\p{P})\1
于 2013-09-16T06:27:52.853 回答