org.clojars.punit-naik.named-capture-groups

capture-group-names

(capture-group-names regex)
If you have a regex with named capture groups like:
`#"(?<year>\d+)\-(?<month>\d+)\-(?<day>\d+)"`
This function will return a list like: `["year", "month", "day"]`

named-capture-groups

(named-capture-groups regex input)
If your regex has named capture groups
This function will return a map of `<group-name>:<matched-string>`