Go Lang简单正则表达式MatchString不起作用?期望false时返回true。为什么?

时间:2016-12-16 11:56:02

标签: 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

0 个答案:

没有答案