Skip to content

Instantly share code, notes, and snippets.

@timyates
Last active August 29, 2015 14:16
Show Gist options
  • Save timyates/94eff7f56822846fd2af to your computer and use it in GitHub Desktop.
Save timyates/94eff7f56822846fd2af to your computer and use it in GitHub Desktop.
Filed under "wouldn't it be nice" ;-)
def matcher = ~/(?<year>\d\d\d\d)-(?<month>\d\d)-(?<day>\d\d)/
switch('2014-10-10') {
case matcher: { year, month, day ->
println "On day $day of month $month, in the year $year"
}
}
@timyates
Copy link
Author

We can almost get there, as thanks to Groovy's ignorance of all things private, we can do:

def matcher = ~/(?<year>\d\d\d\d)-(?<month>\d\d)-(?<day>\d\d)/

switch('2014-10-10') {
    case matcher: println matcher.namedGroups()
}

To print out:

[month:2, year:1, day:3]

@timyates
Copy link
Author

Or indeed:

import java.util.regex.*

def matcher = ~/(?<year>\d\d\d\d)-(?<month>\d\d)-(?<day>\d\d)/

switch('2014-10-15') {
    case matcher: println matcher.namedGroups()
                                 .collectEntries { k, v -> [k, Matcher.lastMatcher.group(v)] }
                                 .with {
        println "On day $day of month $month, in the year $year"
    }
}

If you like typing ;-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment