赞
踩
目录
函数接口
- // Compare比较字符串的速度比字符串内建的比较要快
- func Compare(a, b string) int
示例代码
- fmt.Println(strings.Compare(string("hello"), string("haha"))) // 1
- fmt.Println(strings.Compare(string("hello"), string("world"))) // -1
- fmt.Println(strings.Compare(string("hello"), string("helloworld"))) // -1
- fmt.Println(strings.Compare(string("hello"), string("hello"))) //0
函数接口
- // 判断给定字符串s中是否包含子串substr, 找到返回true, 找不到返回false
- func Contains(s, substr string) bool
- // 在字符串s中查找sep所在的位置, 返回位置值, 找不到返回-1
- func Index(s, sep string) int
- // 统计给定子串sep的出现次数, sep为空时, 返回1 + 字符串的长度
- func Count(s, sep string) int
示例代码
- fmt.Println(strings.Contains("seafood", "foo")) // true
- fmt.Println(strings.Contains("seafood", "bar")) // false
- fmt.Println(strings.Contains("seafood", "")) // true
- fmt.Println(strings.Contains("", "")) // true
- fmt.Println(strings.Index("chicken", "ken")) // 4
- fmt.Println(strings.Index("chicken", "dmr")) // -1
- fmt.Println(strings.Count("cheeseeee", "ee")) // 3
- fmt.Println(strings.Count("five", "")) // 5
函数接口
- // 重复s字符串count次, 最后返回新生成的重复的字符串
- func Repeat(s string, count int) string
示例代码
fmt.Println("ba" + strings.Repeat("na", 2)) // banana
函数接口
- // 在s字符串中, 把old字符串替换为new字符串,n表示替换的次数,小于0表示全部替换
- func Replace(s, old, new string, n int) string
示例代码
- fmt.Println(strings.Replace("oink oink oink", "k", "ky", 2)) // oinky oinky oink
- fmt.Println(strings.Replace("oink oink oink", "oink", "moo", -1)) // moo moo moo
函数接口
- // 删除在s字符串的头部和尾部中由cutset指定的字符, 并返回删除后的字符串
- func Trim(s string, cutset string) string
- // 删除首尾的空格
- func TrimSpace(s string) string
- // 删除首部和尾部的 ! 和空格
示例代码
- fmt.Printf("%q\n", strings.Trim(" !!! Achtung! Achtung! !!! ", "! ")) // "Achtung! Achtung"
- fmt.Printf("%q\n", strings.TrimSpace(" \t\n a lone gopher \n\t\r\n")) // "a lone gopher"
函数接口
- // 给定字符串转换为英文标题的首字母大写的格式(不能正确处理unicode标点)
- func Title(s string) string
- // 所有字母转换为小写
- func ToLower(s string) string
- // 所有字母转换为大写
- func ToUpper(s string) string
示例代码
- fmt.Println(strings.Title("her royal highness")) // Her Royal Highness
- fmt.Println(strings.ToLower("Gopher123")) // gopher123
- fmt.Println(strings.ToUpper("Gopher")) // GOPHER
函数接口
- // 判断字符串是否包含前缀prefix
- func HasPrefix(s, prefix string) bool
- // 判断字符串是否包含后缀suffix,
- func HasSuffix(s, suffix string) bool
示例代码
- fmt.Println(strings.HasPrefix("Gopher", "Go")) // true
- fmt.Println(strings.HasPrefix("Gopher", "go")) // false
- fmt.Println(strings.HasPrefix("Gopher", "C")) // false
- fmt.Println(strings.HasPrefix("Gopher", "")) // true
- fmt.Println(strings.HasSuffix("Amigo", "go")) // true
- fmt.Println(strings.HasSuffix("Amigo", "O")) // false
- fmt.Println(strings.HasSuffix("Amigo", "Ami")) // false
- fmt.Println(strings.HasSuffix("Amigo", "")) // true
函数接口
- // 把字符串按照sep进行分割, 返回slice(类似于python中的split)
- func Split(s, sep string) []string
- // 去除字符串s中的空格符, 并按照空格(可以是一个或者多个空格)分割字符串, 返回slice
- func Fields(s string) []string
- // 当字符串中字符c满足函数f(c)时, 就进行字符串s的分割
- func FieldsFunc(s string, f func(rune) bool) []string
示例代码
- fmt.Printf("%q\n", strings.Split("a,b,c", ",")) // ["a" "b" "c"]
- fmt.Printf("%q\n", strings.Split("a man a plan a canal panama", "a ")) // ["" "man " "plan " "canal panama"]
- fmt.Printf("%q\n", strings.Split(" xyz ", "")) // [" " "x" "y" "z" " "]
- fmt.Printf("%q\n", strings.Split("", "Bernardo O'Higgins")) // [""]
- fmt.Printf("%q\n", strings.Split("1 og.txt", " "))
-
-
- fmt.Printf("Fields are: %q\n", strings.Fields(" foo bar baz ")) // Fields are: ["foo" "bar" "baz"]
-
- f := func(c rune) bool {
- return unicode.IsLetter(c) && !unicode.IsNumber(c)
- }
- // 表示按照非字母, 非数字来分割字符串
- fmt.Printf("Fields are: %q\n", strings.FieldsFunc(" foo1;bar2,baz3...", f)) // Fields are: ["foo1" "bar2" "baz3"]
三种拼接方案:
函数接口
- // bytes.Buffer的方法, 将给定字符串追加(append)到Buffer
- func (b *Buffer) WriteString(s string) (n int, err error)
- // 字符串拼接, 把slice通过给定的sep连接成一个字符串
- func Join(a []string, sep string) string
三种字符串拼接方式的性能测试(出自参考链接的文章)
- package main
- import (
- "bytes"
- "fmt"
- "strings"
- "time"
- )
- func main() {
- var buffer bytes.Buffer
- s := time.Now()
- for i := 0; i < 100000; i++ {
- buffer.WriteString("test is here\n")
- }
- buffer.String() // 拼接结果
- e := time.Now()
- fmt.Println("taked time is ", e.Sub(s).Seconds())
- s = time.Now()
- str := ""
- for i := 0; i < 100000; i++ {
- str += "test is here\n"
- }
- e = time.Now()
- fmt.Println("taked time is ", e.Sub(s).Seconds())
- s = time.Now()
- var sl []string
- for i := 0; i < 100000; i++ {
- sl = append(sl, "test is here\n")
- }
- strings.Join(sl, "")
- e = time.Now()
- fmt.Println("taked time is", e.Sub(s).Seconds())
- }
运行结果如下
- taked time is 0.004145088
- taked time is 13.78821647
- taked time is 0.024005696
字符串转换
字符串转化的函数在strconv中
函数接口
- // 字符串转整数
- func Atoi(s string) (i int, err error)
- // 整数值换字符串
- func Itoa(i int) string
-
示例代码
- str := make([]byte, 0, 100)
- str = strconv.AppendInt(str, 123, 10) // 10用来表示进制, 此处为10进制
- str = strconv.AppendBool(str, false)
- str = strconv.AppendQuote(str, "andrew")
- str = strconv.AppendQuoteRune(str, '刘')
- fmt.Println(string(str)) // 123false"andrew"'刘'
- s := strconv.FormatBool(true)
- fmt.Printf("%T, %v\n", s, s) // string, true
- v := 3.1415926535
- s32 := strconv.FormatFloat(v, 'E', -1, 32)
- fmt.Printf("%T, %v\n", s32, s32) // string, 3.1415927E+00
- s10 := strconv.FormatInt(-44, 10)
- fmt.Printf("%T, %v\n", s10, s10) // string, -44
- num := strconv.Itoa(1234)
- fmt.Printf("%T, %v\n", s, s) // int, 1023
- fmt.Printf("%T, %v\n", num, num) // string, 1234
- s := strconv.Itoa(i)
- //等价于s := strconv.FormatInt(int64(i), 10)
- i := int64(123)
- s := strconv.FormatInt(i, 10)
第二个参数为基数,可选2~36
注:对于无符号整形,可以使用FormatUint(i uint64, base int)
i, err := strconv.Atoi(s)
i, err := strconv.ParseInt(s, 10, 64)
第二个参数为基数(2~36),第三个参数位大小表示期望转换的结果类型,其值可以为0, 8, 16, 32和64,分别对应 int, int8, int16, int32和int64
float转string:
- v := 3.1415926535
- s1 := strconv.FormatFloat(v, 'E', -1, 32)//float32s2 := strconv.FormatFloat(v, 'E', -1, 64)//float64
string转float:
- s := "3.1415926535"
- v1, err := strconv.ParseFloat(v, 32)
- v2, err := strconv.ParseFloat(v, 64)
-
- //string到int
- int,_:=strconv.Atoi("123")
- fmt.Printf("type:%T;值:%v",int,int)
- fmt.Println()
- //string到int64
- int64, _ := strconv.ParseInt("456", 10, 64)
- fmt.Printf("type:%T;值:%v",int64,int64)
- fmt.Println()
- //int到string
- string:=strconv.Itoa(int)
- fmt.Printf("type:%T;值:%v",string,string)
- fmt.Println()
- //int64到string
- str10:=strconv.FormatInt(160,10)
- fmt.Printf("type:%T;值:%v",str10,str10)
- fmt.Println()
- //string到float32(float64)
- float,_ := strconv.ParseFloat("165.34",32/64)
- fmt.Printf("type:%T;值:%v",float,float)
- fmt.Println()
- //float到string
- fts32 := strconv.FormatFloat(3.1415926, 'e', -1, 32)
- fts64 := strconv.FormatFloat(3.1415926, 'E', -1, 64)
- fmt.Printf("type:%T;值:%v",fts32,fts32)
- fmt.Println()
- fmt.Printf("type:%T;值:%v",fts64,fts64)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。