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.

17.8.0