show/hide this revision's text 2 There, not dereferencing a potentially-nonexistent index. Hopefully!

This is my best understanding of how to do this using Groovy syntax (but see lfaraone's response too):

import java.util.regex.Matcher

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

This is my best understanding of how to do this using Groovy syntax (but see lfaraone's response too):

def txt = 'abc : groovy : def'
def matcher = txt =~ ~/ : (.+?) : /
if (matcher[0]) {
    def match = matcher[0][1]
    println "MATCH=$match"
}