String Functions->字符串函数
#
// 标准库的 `strings` 包提供了很多有用的字符串相关的函数。
// 这儿有一些用来让你对 `strings` 包有一个初步了解的例子。
package main
import (
"fmt"
s "strings"
)
// 我们给 `fmt.Println` 一个较短的别名,
// 因为我们随后会大量的使用它。
var p = fmt.Println
func main() {
// 这是一些 `strings` 中有用的函数例子。
// 由于它们都是包的函数,而不是字符串对象自身的方法,
// 这意味着我们需要在调用函数时,将字符串作为第一个参数进行传递。
// 你可以在 [`strings`](http://golang.org/pkg/strings/) 包文档中找到更多的函数。
p("Contains: ", s.Contains("test", "es"))
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("Join: ", s.Join([]string{"a", "b"}, "-"))
p("Repeat: ", s.Repeat("a", 5))
p("Replace: ", s.Replace("foo", "o", "0", -1))
p("Replace: ", s.Replace("foo", "o", "0", 1))
p("Split: ", s.Split("a-b-c-d-e", "-"))
p("ToLower: ", s.ToLower("TEST"))
p("ToUpper: ", s.ToUpper("test"))
p()
// 虽然不是 `strings` 的函数,但仍然值得一提的是,
// 获取字符串长度(以字节为单位)以及通过索引获取一个字节的机制。
p("Len: ", len("hello"))
p("Char:", "hello"[1])
}
// 注意,上面的 `len` 以及索引工作在字节级别上。
// Go 使用 UTF-8 编码字符串,因此通常按原样使用。
// 如果您可能使用多字节的字符,则需要使用可识别编码的操作。
// 详情请参考 [strings, bytes, runes and characters in Go](https://blog.golang.org/strings)。
$ go run string-functions.go
Contains: true
Count: 2
HasPrefix: true
HasSuffix: true
Index: 1
Join: a-b
Repeat: aaaaa
Replace: f00
Replace: f0o
Split: [a b c d e]
ToLower: test
ToUpper: TEST
Len: 5
Char: 101