标签: regex go
以下代码打印为true。它不应该返回false吗?
package main import "regexp" import "fmt" func main() { res, _ := regexp.MatchString("[a-z][0-9a-zA-Z_$]*", "%s") fmt.Println(res) }
https://play.golang.org/p/A_x5WID9wl