TOP ▲
itcore TOP
>
TIPS
>
do_mojisu.php
タグ:
go
string
GO言語 文字数を返す | itcore 2021年
import (
"unicode/utf8"
)
// 文字数を返す。
func uMojisu(str string) int {
return utf8.RuneCountInString(str)
}