|
字符串处理
Contains
func Contains(s,substr string)bool
功能:字符串S中是否包含substr,返回bool值
Join
func Join(a []string,sep string)string
功能:字符串链接,把slice a 通过sep链接起来
Index
func Index(s,sep string)int
功能:在字符串S中查找sep所在的位置,返回位置值,找不到返回-1
Repeat
func Repeat(s 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
功能:把字符串按照sep分割,返回slice
Trim
func Trim(s string,cutset string)string
功能:在S字符串的头部和尾部去除cutset指定的字符串
Fields
func Fields(s string)[]string
功能:去除S字符串的空格符,并且按照空格分割返回slice
字符串转换strconv
Append将整数等转换为字符串后,添加到现有的字节数组中。
Format把其他类型的转换为字符串
Parse把字符串转换成其他类型
|
|