Groovy syntax for regular expression matching - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T06:00:55Zhttp://stackoverflow.com/feeds/question/764387http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/764387/groovy-syntax-for-regular-expression-matching0Groovy syntax for regular expression matchingknorv2009-04-18T22:43:40Z2009-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#7644131Answer by lfaraone for Groovy syntax for regular expression matchinglfaraone2009-04-18T22:57:09Z2009-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#7644310Answer by Chris Jester-Young for Groovy syntax for regular expression matchingChris Jester-Young2009-04-18T23:09:14Z2009-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#7644950Answer by knorv for Groovy syntax for regular expression matchingknorv2009-04-18T23:38:29Z2009-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#7645031Answer by Chas. Owens for Groovy syntax for regular expression matchingChas. Owens2009-04-18T23:42:26Z2009-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>