Skip to content

Instantly share code, notes, and snippets.

@augustoerico
Created July 13, 2018 13:20
Show Gist options
  • Save augustoerico/f58552cada34def83509785dad73eadc to your computer and use it in GitHub Desktop.
Save augustoerico/f58552cada34def83509785dad73eadc to your computer and use it in GitHub Desktop.
def matcher = (description =~ /Tam\.: (\d+) a (\d+)/)
if (matcher.size()) {
matcher.getAt(0) // <- this is required... without it, first = -1 always...
println(matcher.group(1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment