mirror of
https://github.com/bestnite/bilinovel-downloader.git
synced 2025-04-27 02:35:54 +08:00
16 lines
242 B
Go
16 lines
242 B
Go
package utils
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
func CleanDirName(input string) string {
|
|
re := regexp.MustCompile(`[<>:"/\\|?*\x00-\x1F]`)
|
|
cleaned := re.ReplaceAllString(input, "_")
|
|
|
|
cleaned = strings.TrimSpace(cleaned)
|
|
|
|
return cleaned
|
|
}
|