所以我这样做了:
r, _ := regexp.Compile("* * *") r2 := r.ReplaceAll(b, []byte("<hr>"))
并得到:
panic: runtime error: invalid memory address or nil pointer dereference
所以我想我必须逃避他们:
r, _ := regexp.Compile("\* \* \*")
但是得到了 unknown escape secuence
我是围棋初学者。我究竟做错了什么?
烙印99
相关分类