Golang(Go语言)代码技巧之字符串(string)

  • 改变字符串中的某些字符
  
  
str := "hello roc"bytes []byte(str)bytes[1]='a' string //str == "hallo roc"
   
   
substr str[n:m//截取从索引n到m-1的子串
  • 遍历字符串
    
    
//for遍历,此方式只能遍历存放ASCII//编码的字符串,比如中文就不行for i 0;< len); i++{//... = str[i]}//for-range遍历,此方式可以遍历Unicode//编码的字符串,不担心乱码 index,char range str fmt.Printf("%d %c\n"indexchar)}
  • 计算字符串长度
  
    
//字符串中字符全为ASCII中的字符len)//字符串中含非ASCII的Unicode字符utf8.RuneCountInString)
  • 连接字符串
速度最快的写法:
var buf bytes.Bufferbuf.WriteString"hello ""roc"fmt.Println.String())//hello roc
还有如下两种方式:
strings.Join([]{"hello"" world"},68)">"")
  
     
"hello"+="roc"

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1&#160;Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...