在 Go 中有几种方式将 rune 类型转换为 string



1
2
string('c')
// string(rune('c'))
1
c

或者借助 strconv

1
strconv.QuoteRune('c')
1
'c'

这种方式会将单引号也打印出来

03-16 18:41