10. 字符串

Posted hatsusakana

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10. 字符串相关的知识,希望对你有一定的参考价值。

【遍历字符串】

str := "test string"

for i:= 0; i < len(str); i++ {
    fmt.Printf("%c ",str[i])
} 

这样写似乎没什么问题,但是在Go语言中我们一般使用utf-8编码,在遇到中文或其他特殊字符时,就会出现问题。我们可以使用,rune + range 循环

str := "Se?or"

for index, rune := range str {
    fmt.Printf("str[%d] ==> %c
", index, rune)
}

str[0] ==> S
str[1] ==> e
str[2] ==> ?
str[4] ==> o
str[5] ==> r

可以看到输出,2之后直接就是4,因为?占了两个字节。

 

字符串就先研究到这里,因为对字符串处理的需求可以说是最多的,后期遇到再做整理。





以上是关于10. 字符串的主要内容,如果未能解决你的问题,请参考以下文章

web代码片段

VSCode自定义代码片段10—— 数组的响应式方法

比较 C# 中的字符串片段并从集合中删除项目

高效Web开发的10个jQuery代码片段

高效Web开发的10个jQuery代码片段

C#程序员经常用到的10个实用代码片段 - 操作系统