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"
}
