我有一个这样的文件: 每行代表一个网站
1 www.google.com$
2 www.apple.com$
3 www.facebook.com$
我在golang中读到这样的:
type ListConf struct {
File string
Datas map[string]struct{}
}
func loadListConf(conf *ListConf, path string) {
file, err := os.Open(path + "/" + conf.File)
if err != nil {
fmt.Println("Load conf " + conf.File + " error: " + err.Error())
return
}
defer file.Close()
conf.Datas = make(map[string]struct{})
buf := bufio.NewReader(file)
end := false
for !end {
line, err := buf.ReadString('\n')
if err != nil {
if err != io.EOF {
fmt.Println("Load conf " + conf.File + " error: " + err.Error())
return
} else {
end = true
}
}
item := strings.Trim(line, "\n")
if item == "" {
continue
}
conf.Datas[item] = struct{}{}
}
}
但是,当我在地图中搜索“www.google.com”等关键字时,会显示地图中没有“www.google.com”。
website := "www.google.com"
if _, ok := conf.Datas[website]; ok {
fmt.Printf("%s is in the map.", website)
} else {
fmt.Printf("%s is not in the map.", website)
}
它打印“www.google.com不在地图中”。 我在地图中的每个键的末尾发现了一个^ M,我的问题是如何删除^ M字符?
www.google.com^M
www.apple.com^M
www.facebook.com^M