Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 26th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Regex Expression for CheckStyle is ignoring minimum property
  2. < module name="RegexpSinglelineJava">
  3.         < property name="format" value=""*""/>
  4.         < property name="minimum" value="2"/>
  5.     < /module>
  6.        
  7. minimum       The minimum number of matches required in each file.
  8.        
  9. (?s)("(?:[^"\]+|\.)*")(?=.*?1)
  10.        
  11. <module name="RegexpMultiline">
  12.   <property name="format" value='(?s)("(?:[^"\]+|\.)*")(?=.*?1)'/>
  13. </module>