show/hide this revision's text 4 deleted 13 characters in body

What is the Groovy equivalent of the following Perl code?

my $txt = "abc : groovy : def";
if ($txt =~ / : (.+?) : /) {
  my $match = $1;
  print "MATCH=$match\n"; 
  # should print "MATCH=groovy\n"
}

I know that TMTOWTDI (including the regular Java way) - but what is the "Groovy way" of doing it?

This is one way of doing it, but it feels a bit clumsy - especially the array notation (m[0][1]) notation which feels a bit strange. Is there a better way do it? If not - please describe the logic behind why m[0][1].

def txt = "java : groovy : grails"
if ((m = txt =~ / : (.+?) :/)) {
  def match = m[0][1]
  println "MATCH=$match"
}
show/hide this revision's text 3 added 4 characters in body

What is the Groovy equivalent of the following Perl code?

my $txt = "abc : groovy : def";
if ($txt =~ / : (.+?) : /) {
  my $match = $1;
  print "MATCH=$match\n"; 
  # should print "MATCH=groovy\n"
}

I know that TMTOWTDI (including the regular Java way) - but what is the "Groovy way" of doing it?

This is one way of doing it, but it feels a bit clumsy - especially the m[0][1] array notation (m[0][1]) notation which feels a bit strange. Is there a better way do it? If not - please describe the rationale logic behind the m[0][1] notationwhy m[0][1].

def txt = "java : groovy : grails"
def m if ((m = txt =~ / : (.+?) :/
if (m) /)) {
  def match = m[0][1]
  println "MATCH=$match"
}
show/hide this revision's text 2 added 373 characters in body

What is the Groovy equivalent of the following Perl code?

my $txt = "abc : groovy : def";
if ($txt =~ / : (.+?) : /) {
  my $match = $1;
  print "MATCH=$match\n"; 
  # should print "MATCH=groovy\n"
}

I know that TMTOWTDI (including the regular Java way) - but what is the "Groovy way" of doing it?

This is one way of doing it, but it feels a bit clumsy - especially the m[0][1] notation which feels a bit strange. Is there a better way do it? If not - please describe the rationale behind the m[0][1] notation.

def txt = "java : groovy : grails"
def m = txt =~ / : (.+?) :/
if (m) {
  def match = m[0][1]
  println "MATCH=$match"
}
show/hide this revision's text 1