使用代码:
package mainimport (\"fmt\"\"regexp\")//本次匹配使用\"regexp\"内置的一个正则匹配包func main() {str := \"李小龙\"//要匹配的字符串isChinese := regexp.MustCompile(\"^[\\u4e00-\\u9fa5]\")//我们要匹配中文的匹配规则fmt.Println(isChinese.MatchString(str))//使用MatchString来将要匹配的字符串传到匹配规则中}
运行结果:
true