```
package main
import (
"fmt"
"regexp"
)
func main(){
dst := "[11::22:33:44]:99"
e,_ := regexp.Compile("\[.+\]")
f :=e.FindAllStringSubmatch(dst,1)
fmt.Println(f)
}```
我本意是想提取[]中的11::22:33:44, 每次报错,不知道转义错误在哪?
```
./2.go:10:33: unknown escape sequence
```
有疑问加站长微信联系(非本文作者)