Groovy syntax for regular expression matching - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:00:55Z http://stackoverflow.com/feeds/question/764387 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/764387/groovy-syntax-for-regular-expression-matching 0 Groovy syntax for regular expression matching knorv 2009-04-18T22:43:40Z 2009-04-19T01:05:26Z <p>What is the Groovy equivalent of the following Perl code?</p> <pre><code>my $txt = "abc : groovy : def"; if ($txt =~ / : (.+?) : /) { my $match = $1; print "MATCH=$match\n"; # should print "MATCH=groovy\n" } </code></pre> <p>I know that TMTOWTDI (including the regular Java way) - but what is the "Groovy way" of doing it?</p> <p>This is one way of doing it, but it feels a bit clumsy - especially the array notation (m[0][1]) which feels a bit strange. Is there a better way do it? If not - please describe the logic behind m[0][1].</p> <pre><code>def txt = "java : groovy : grails" if ((m = txt =~ / : (.+?) :/)) { def match = m[0][1] println "MATCH=$match" } </code></pre> http://stackoverflow.com/questions/764387/groovy-syntax-for-regular-expression-matching/764413#764413 1 Answer by lfaraone for Groovy syntax for regular expression matching lfaraone 2009-04-18T22:57:09Z 2009-04-18T22:57:09Z <p>The "groovy way" is documented on <a href="http://groovy.codehaus.org/Regular%2BExpressions" rel="nofollow">their wiki</a>.</p> <p>Personally, I find such syntax to be overly arcane, and would just use standard Java. </p> http://stackoverflow.com/questions/764387/groovy-syntax-for-regular-expression-matching/764431#764431 0 Answer by Chris Jester-Young for Groovy syntax for regular expression matching Chris Jester-Young 2009-04-18T23:09:14Z 2009-04-18T23:30:51Z <p>This is my best understanding of how to do this using Groovy syntax (but see lfaraone's response too):</p> <pre><code>import java.util.regex.Matcher def txt = 'abc : groovy : def' if (txt =~ ~/ : (.+?) : /) { def match = Matcher.lastMatcher[0][1] println "MATCH=$match" } </code></pre> http://stackoverflow.com/questions/764387/groovy-syntax-for-regular-expression-matching/764495#764495 0 Answer by knorv for Groovy syntax for regular expression matching knorv 2009-04-18T23:38:29Z 2009-04-19T00:25:59Z <p>This was the closest match to the Perl code that I could achieve:</p> <pre><code>def txt = "abc : groovy : def" if ((m = txt =~ / : (.+?) : /)) { def match = m.group(1) println "MATCH=$match" } </code></pre> http://stackoverflow.com/questions/764387/groovy-syntax-for-regular-expression-matching/764503#764503 1 Answer by Chas. Owens for Groovy syntax for regular expression matching Chas. Owens 2009-04-18T23:42:26Z 2009-04-19T01:05:26Z <p><code>m[0]</code> is the first match object.<br /> <code>m[0][0]</code> is everything that matched in this match.<br /> <code>m[0][1]</code> is the first capture in this match.<br /> <code>m[0][2]</code> is the second capture in this match.</p> <p>Based on what I have read (I don't program in Groovy or have a copy handy), given </p> <pre><code>def m = "barbaz" =~ /(ba)([rz])/; </code></pre> <p><code>m[0][0]</code> will be <code>"bar"</code><br /> <code>m[0][1]</code> will be <code>"ba"</code><br /> <code>m[0][2]</code> will be <code>"r"</code><br /> <code>m[1][0]</code> will be <code>"baz"</code><br /> <code>m[1][1]</code> will be <code>"ba"</code><br /> <code>m[1][2]</code> will be <code>"z"</code> </p> <p>I could stand not knowing if I was right or not, so I downloaded groovy and wrote an example:</p> <pre><code>def m = "barbaz" =~ /(ba)([rz])/; println "m[0][0] " + m[0][0] println "m[0][1] " + m[0][1] println "m[0][2] " + m[0][2] println "m[1][0] " + m[1][0] println "m[1][1] " + m[1][1] println "m[1][2] " + m[1][2] </code></pre>