groovy-regular-expressions

Last modified by Ludovic Dubost on 2012/10/09 15:53

Regular Expressions
Groovy Language
No
http://groovy.codehaus.org/Regular+Expressions

Groovy supports regular expressions natively using the ~"pattern" expression, which creates a compiled Java Pattern object from the given pattern string. Groovy also supports the =~ (create Matcher) and ==~ (returns boolean, whether String matches the pattern) operators.