Go字符串函数
Posted lmh001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go字符串函数相关的知识,希望对你有一定的参考价值。
下面的代码中,列出了Go官方包中常见的字符串函数。
package main
import (
"fmt"
s "strings"
)
//为打印函数起个小名儿,比较有特点的用法
var p = fmt.Println
func main() {
p("Contains:", s.Contains("test", "st"))
p("SubString: ", "test"[1:2]) //截取子字符串
p("Count: ", s.Count("test", "t")) //函数第二个参数中指定字符串的个数
p("HasPrefix: ", s.HasPrefix("test", "te")) //判断前缀
p("HasSuffix: ", s.HasSuffix("test", "st")) //判断后缀
p("Index: ", s.Index("test", "e")) //判断第一个出现的位置
p("LastIndex: ", s.LastIndex("test", "t")) //判断最后一个出现的位置
p("Join: ", s.Join([]string{"a", "b"}, "-")) //用-把数组拼接成字符串
p("Repeat: ", s.Repeat("a", 5)) //重复5次
p("Replace: ", s.Replace("foo", "o", "0", -1)) //替换字符,后两个参数表示起始位置和长度,-1表示到结尾
p("Replace: ", s.Replace("foo", "o", "0", 1)) //替换字符,后两个参数表示起始位置和长度
p("Split: ", s.Split("a-b-c-d-e", "-")) //分割字符串,与Join相反
p("ToLower: ", s.ToLower("TEST")) //转成小写
p("ToUpper: ", s.ToUpper("test")) //转成大写
p() //打印空行
p("Len: ", len("hello")) //字符串长度
p("Char:", "hello"[1]) //获取指定位置的字符
}
以上是关于Go字符串函数的主要内容,如果未能解决你的问题,请参考以下文章
解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段