当前位置: 首页>>编程语言>>正文


Go语言教程:字符串函数

返回Go语言教程首页

概念简介

标准库的 `strings` 包提供了很多有用的字符串相关的函数。
这里是一些用来让你对这个包有个初步了解的例子。

例程代码


package main

import s "strings"
import "fmt"

// 我们给 `fmt.Println` 一个短名字的别名,我们随后将会经常
// 用到。
var p = fmt.Println

func main() {

    // 这是一些 `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`](http://golang.org/pkg/strings/)
    // 包文档中找到更多的函数

    // 虽然不是 `strings` 的一部分,但是仍然值得一提的是获
    // 取字符串长度和通过索引获取一个字符的机制。
    p("Len: ", len("hello"))
    p("Char:", "hello"[1])
}

执行&输出


$ 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

课程导航

学习上一篇:Go语言教程:组合函数    学习下一篇:Go语言教程:字符串格式化

相关资料

本例程github源代码:https://github.com/xg-wang/gobyexample/tree/master/examples/string-functions

Go字符串函数

本文由《纯净天空》出品。文章地址: https://vimsky.com/article/4085.html,未经允许,请勿转载。