为什么C:\\\\(由`引用) 正则表达式 不匹配"C:\\"和"C:\\\\"做什么?
r, err := regexp.Compile(`C:\\\\`) // Not match
r, err := regexp.Compile("C:\\\\") // Matches
if r.MatchString("Working on drive C:\\") == true {
fmt.Printf("Matches.")
} else {
fmt.Printf("No match.")
}
慕莱坞森
相关分类