mirror of
https://github.com/anchore/syft
synced 2024-11-10 14:24:12 +00:00
931c796158
Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
15 lines
439 B
Go
15 lines
439 B
Go
package internal
|
|
|
|
import "regexp"
|
|
|
|
// MatchCaptureGroups takes a regular expression and string and returns all of the named capture group results in a map.
|
|
func MatchCaptureGroups(regEx *regexp.Regexp, str string) map[string]string {
|
|
match := regEx.FindStringSubmatch(str)
|
|
results := make(map[string]string)
|
|
for i, name := range regEx.SubexpNames() {
|
|
if i > 0 && i <= len(match) {
|
|
results[name] = match[i]
|
|
}
|
|
}
|
|
return results
|
|
}
|