GO语言"strings"包中"Split"函数的用法及代码示例。
用法:
func Split(s, sep string) []string
将切片 s 拆分为由 sep 分隔的所有子字符串,并返回这些分隔符之间的子字符串切片。
如果 s 不包含 sep 并且 sep 不为空,Split 返回一个长度为 1 的切片,其唯一元素是 s。
如果 sep 为空,Split 在每个 UTF-8 序列之后拆分。如果 s 和 sep 都为空,则 Split 返回一个空切片。
它等效于计数为 -1 的SplitN。
要围绕分隔符的第一个实例进行拆分,请参阅剪切。
例子:
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Printf("%q\n", strings.Split("a,b,c", ","))
fmt.Printf("%q\n", strings.Split("a man a plan a canal panama", "a "))
fmt.Printf("%q\n", strings.Split(" xyz ", ""))
fmt.Printf("%q\n", strings.Split("", "Bernardo O'Higgins"))
}
输出:
["a" "b" "c"] ["" "man " "plan " "canal panama"] [" " "x" "y" "z" " "] [""]
相关用法
- GO Split用法及代码示例
- GO SplitAfter用法及代码示例
- GO SplitAfterN用法及代码示例
- GO SplitN用法及代码示例
- GO SplitList用法及代码示例
- GO Sprintf用法及代码示例
- GO Sprint用法及代码示例
- GO SpecialCase用法及代码示例
- GO Sprintln用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO StreamWriter用法及代码示例
- GO Server.Shutdown用法及代码示例
- GO Slice用法及代码示例
- GO StructTag.Lookup用法及代码示例
- GO Sum256用法及代码示例
- GO SectionReader用法及代码示例
- GO Sin用法及代码示例
- GO Strings用法及代码示例
- GO SendMail用法及代码示例
- GO StructTag用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Split。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。