예제 #1
0
파일: renamer.go 프로젝트: pboehm/series
func ExtractEpisodeInformation(entry string) map[string]string {
	for _, pattern := range Patterns {
		groups, matched := util.NamedCaptureGroups(pattern, entry)
		if matched {
			return groups
		}
	}
	return nil
}
예제 #2
0
파일: renamer.go 프로젝트: pboehm/series
func IsInterestingDirEntry(entry string) bool {
	for _, pattern := range Patterns {
		_, matched := util.NamedCaptureGroups(pattern, entry)
		if matched {
			return true
		}
	}
	return false
}