mb_strlen

mb_strlen

[code]
func MbStrlen(str string) int {
	return utf8.RuneCountInString(str)
}
[/code]