谁能解释一下为什么要打这场比赛?
来源:
package main
import "fmt"
import "regexp"
func main() {
match, _ := regexp.MatchString("[a-z]+", "test?")
fmt.Printf("the result of match: %v", match)
}
golang的regexp.MatchString不是完全匹配吗?我无法理解,我是 golang 的新手
噜噜哒
相关分类