- 操作
//"helloogo"中是否包含"hello"
fmt.Println(strings.Contains("helloogo", "hello"))
fmt.Println(strings.Contains("helloogo", "goe"))
//Join组合
s := []string{"abc", "hello", "mike", "go"}
buf := strings.Join(s, "_")
fmt.Println("buf = ", buf)
//Index 查找子串所在位置
fmt.Println(strings.Index("abcdhello", "hello"))
fmt.Println(strings.Index("abcdhello", "go"))
//Repeat 重复打印
buf = strings.Repeat("go", 3)
fmt.Println("buf = ", buf)
//Split 以指定的分隔符对字符串进行拆分
buf = "hello&abc&go&mike&you"
s2 := strings.Split(buf, "&")
fmt.Println("s2 = ", s2)
//Trim 去掉两头的字符
buf = strings.Trim(" are you ok ", " ")
fmt.Println("buf = ", buf)
//Fields 去掉空格,把元素放入切片中
s3 := strings.Fields(" are you ok? ")
for i, data := range s3 {
fmt.Println(i, ", ", data)
}
- 输出
true false buf = abc_hello_mike_go 4 -1 buf = gogogo s2 = [hello abc go mike you] buf = are you ok 0 , are 1 , you 2 , ok?
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- SQL SERVER 2012新增函数之字符串函数FORMAT详解
- SQL SERVER2012中新增函数之字符串函数CONCAT详解
- jstl 字符串处理函数
- MySQL常用字符串函数
- PHP 常用字符串相关函数
- 009.Python字符串相关函数
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。