This commit is contained in:
Simon Ding
2024-08-02 12:19:53 +08:00
parent 7f8c613a65
commit 3aeecac4fb
3 changed files with 27 additions and 15 deletions

View File

@@ -112,21 +112,6 @@ func FindSeasonPackageInfo(name string) (se int, err error) {
return se, err
}
func IsSeasonPackageName(name string) bool {
seRe := regexp.MustCompile(`S\d+`)
epRe := regexp.MustCompile(`E\d+`)
nameUpper := strings.ToUpper(name)
matchEp := epRe.FindAllString(nameUpper, -1)
if len(matchEp) != 0 {
return false //episode number should not exist
}
matchSe := seRe.FindAllString(nameUpper, -1)
if len(matchSe) == 0 {
return false //no season num
}
return true
}
func ContainsIgnoreCase(s, substr string) bool {
return strings.Contains(strings.ToLower(s), strings.ToLower(substr))
}