Ejemplo n.º 1
0
func (s *ProductService) getCapital(text string) string {
	str := utils.ParsePinyin(text)
	if len(str) > 0 {
		return strings.ToLower(str[0:1])
	}
	return "-"
}
Ejemplo n.º 2
0
// convert to pinyin
func parseQuickText(text string) string {
	return utils.ParsePinyin(text)
}