字符串操作
Contains
func Contains(s,substr string) bool
功能:字符串s中是否包含 substr,返回bool值
Join
func Join(a []string,sep string) string
功能:字符串链接,把slice a通过sep链接起来
Index
func Index(a ,sep string) int
功能:在字符中s中查找sep所在的位置,返回位置值,找不到返回-1
Repeat
func Repeat(a string ,count int) string
功能:重复s字符串count 次,最后返回重复的字符串
Replace
func Replace(s, old ,new string,n int) string
功能:在s字符串中,把old字符串替换为new 字符串,n表示替换的次数,小于0表示全部替换
Split
func Split(s,sep string) []string
功能:把s字符串按照sep分割,返回slice
Trim
func Trim(s string,cutset string) string
功能:在s字符串的头部和尾部去掉cutset指定的字符串
Fields
func Fields(s string) []string
功能:去除s字符串的空格符,并且按照空格分割返回slice
字符串转换
字符串转化的函数在 strconv中,常见的有以下三种。
Append
Append 系列函数将整数等转换为字符串后,添加到现有的字节数组中。
- 打印需要转换成字符串以后在打印
Format
Format 系列函数把其他类型的转换为字符串。比如:
Parse
字符串转换为其他类型
字符串转换为整型