func validateChineseName(name string) bool { match, _ := regexp.MatchString("^[\u4e00-\u9fa5]{2,4}$", name) return match }