**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Contains(s, substr </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">) </font><font style="color:rgb(0,0,128);">bool</font>
功能:字符串 s 中是否包含 substr,返回 bool 值
注意返回的是bool | bool | | | Join |
**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Join(a []</font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">, sep </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">) </font><font style="color:rgb(0,0,128);">string</font>
功能:字符串链接,把 slice a 通过 sep 链接起来
| string |
这个连接不是简单拼接,是sep作为绳子,把slice a的每一艘船,连接起来 | | Index |
**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Index(s, sep </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">) </font><font style="color:rgb(0,0,128);">int</font>
功能:在字符串 s 中查找 sep 所在的位置,返回位置值,找不到返回-1 | int |
下标从0开始 | | Repeat |
**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Repeat(s </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">, count </font><font style="color:rgb(0,0,128);">int</font><font style="color:rgb(0,0,0);">) </font><font style="color:rgb(0,0,128);">string</font>
功能:重复 s 字符串 count 次,最后返回重复的字符串 | string | | | Reaplace |
**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Replace(s, old, </font><font style="color:rgb(0,0,128);">new string</font><font style="color:rgb(0,0,0);">, n </font><font style="color:rgb(0,0,128);">int</font><font style="color:rgb(0,0,0);">) </font><font style="color:rgb(0,0,128);">string</font>
功能:在 s 字符串中,把 old 字符串替换为 new 字符串,n 表示替换的次数,小于 0 表示全部替换 | string | | | Split
(分割) |
**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Split(s, sep </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">) []</font><font style="color:rgb(0,0,128);">string</font>
功能:把 s 字符串按照 sep 分割,返回 slice |
[]string
| 说明:
1. %q来打印的,%q 打印双引号???
2. sep若是
""
,则依次一个一个字符进行分割3. sep若是不存在于s 中,则不进行处理输出s | | Trim
(削减) |
**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Trim(s </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">, cutset </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">) </font><font style="color:rgb(0,0,128);">string</font>
功能:在 s 字符串的头部和尾部去除 cutset 指定的字符串
| string |
就像吃鱼,去掉头部和尾巴,而且是批量处理 | | Field (字段) |
**<font style="color:rgb(0,0,128);">func </font>**<font style="color:rgb(0,0,0);">Fields(s </font><font style="color:rgb(0,0,128);">string</font><font style="color:rgb(0,0,0);">) []</font><font style="color:rgb(0,0,128);">string</font>
功能:去除 s 字符串的空格符,并且按照空格分割返回 slice
好像是把一句英文话的所有英文单词提取出来
|
[]string
| 和replace有点像,但是replace可自主定义替换,返回的是完整字符串,而Filed去点空字符,返回的是切片 | ## 字符串转换 > strconv 包 > ### append系列函数 > 为string诞生的304胶水 > 这是append系列函数,和切片扩容的append函数不一样!Append 系列函数将整数等转换为字符串后,添加到现有的字节数组中。
package main
import (
"fmt"
"strconv"
)
func main() {
str := make([]byte, 0, 100)
str = strconv.AppendInt(str, 4567, 10) //以 10 进制方式追加
str = strconv.AppendBool(str, false)
str = strconv.AppendQuote(str, "abcdefg") //就加字符串,quote是引用的意思
str = strconv.AppendQuoteRune(str, '单') //加含有非英文的字符串,看到rune没?!
fmt.Println(string(str)) //一定要加string,至于为什么能这么转我也不知道
fmt.Println(str) //没有string结果大大滴不同
}
Format系列函数
Format 系列函数把其他类型的转换为字符串。让这个世界只有string吧格拉啦啦啦啦!
a := strconv.FormatBool(false)
b := strconv.FormatInt(1234, 10) //整数转化为字符串,以10进制
c := strconv.FormatUint(12345, 10) //???
d := strconv.Itoa(1023) //整数转化为字符串,常用
//把浮点数3.14,按浮点型,以最少量但必须的精度,转化成字符串,其中3.14其来源类型是float32
e := strconv.FormatFloat(3.14, 'f', -1, 32)
fmt.Println(a, b, c, d,e)
结果:
解释:
关于:FormatFloat
fmt的'-ddd.ddd'
表示浮点型
Parse系列函数
消灭这世上的字符串
parse英文是 v. 仔细研究,分析的 & n. (计算机)句法分析,句法分析结果
Parse 系列函数把字符串转换为其他类型,最需要注意的是有两个返回值
package main
import (
"fmt"
"strconv"
)
func checkError(e error) {
if e != nil {
fmt.Println(e)
}
}
func main() {
a, err := strconv.ParseBool("false")
checkError(err)
b, err := strconv.ParseFloat("123.23", 64)
checkError(err)
c, err := strconv.ParseInt("1234", 10, 64)
checkError(err)
d, err := strconv.ParseUint("12345", 10, 64)
checkError(err)
e, err := strconv.Atoi("1023") //最常用!!!意思是把字符串转化为整型
checkError(err)
fmt.Println(a, b, c, d, e) //false 123.23 1234 12345 1023
}
对于error的检查,还可以