package pkgtest
import "strings"
func clean(s string) string {
s = strings.TrimSpace(s)
s = strings.ReplaceAll(s, "\\", "/")
return s
}