gpt4 book ai didi

regex - ` and "引用的正则表达式有什么区别?

转载 作者:IT老高 更新时间:2023-10-28 13:10:46 26 4
gpt4 key购买 nike

为什么是 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.")
}

最佳答案

不解释原始字符串文字中的转义序列(由引号引起来)。

`C:\\\\`

相当于:

"C:\\\\\\\\"

The Go Programming Language Specification - String literals .

关于regex - ` and "引用的正则表达式有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20761016/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com