Golang 字符串操作示例,字符串函数主要集中在 strings 包中,本文介绍使用方法,给出一个函数接口,然后匹配相关example。
strings
strings
包提供 UTF-8 字符串常用函数和结构体
常用函数:
- Compare:比较字符串
- Contains:是否包含子字符串
- Count:子字符串出现的次数
- Index:获取子字符串首次出现的index, 找不到返回-1
- LastIndex:获取子字符串最后一次出现的index
- HasPrefix:是否以字符串做前缀
- HasSuffix:是否以字符串作后缀
- EqualFold:不区分大小写比较
- Split:分割字符串为切片
- Join:字符串连接
- Fields:按空白字符分割字符串
字符串比较
函数接口
// 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
// 删除首尾的空格
// 删除首部和尾部的 ! 和空格
fmt.Printf("%q\n", strings.Trim(" !!! Achtung! Achtung! !!! ", "! ")) // "Achtung! Achtung"
fmt.Printf("%q\n", strings.Trim("abcderf", "cba")) // "derf"
// 去掉空白字符,如空格、\t、\n
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中的空白字符(空格符、\n、\r、\t、\v等), 并按照空格(可以是一个或者多个空格)分割字符串, 返回slice
func Fields(s string) []string
// 当字符串中字符c满足函数f(c)时, 就进行字符串s的分割
func FieldsFunc(s string, f func(rune) bool) []string
使用example
func main() {
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", " "))
} // ["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"]
字符串拼接
三种拼接方案:
- 直接用+=操作符, 直接将多个字符串拼接. 最直观的方法, 不过当数据量非常大时用这种拼接访求是非常低效的.
- 用字符串切片([]string)装载所有要拼接的字符串,最后使用strings.Join()函数一次性将所有字符串拼接起来。在数据量非常大时,这种方法的效率也还可以的。
- 利用Buffer(Buffer是一个实现了读写方法的可变大小的字节缓冲),将所有的字符串都写入到一个Buffer变量中,最后再统一输出.
函数接口
// 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