show/hide this revision's text 3 deleted 19 characters in body

This was the closest match to the Perl code that I could achieveafter some testing:

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

This was the closest match to the Perl code that I could create achieve after some testing:

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

This was the closest match to the Perl code that I could create after some testing:

def txt = "abc : groovy : def"
if ((m = txt =~ / : (.+?) : /)) {
  def match = m.group(1)
  println "MATCH=$match"
}