首页 > 其他 > 详细

go 返回中文字符串字串索引

时间:2020-07-16 16:16:12      阅读:45      评论:0      收藏:0      [点我收藏+]

方法一

str := "返回中文字符串字串索引"
subStr := "回"
idx := strings.index(str, subStr) // 3
preStrByt := []byte(str)[:idx]
preRune := []rune(string(preStrByt ))
return len(preRune) //1

方法二

n := strings.index(str, subStr)
utf8.RuneCountInString(str[:n]) // 1

go 返回中文字符串字串索引

原文:https://www.cnblogs.com/t0000/p/13321982.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!