概述
Go 语言的strings
包提供了一个Join
方法,可用于根据分隔符连接字符串。
函数签名:
func Join(a []string, sep string)
此函数接受一段字符串和一个连接符,并返回由连接符连接的组合字符串。连接符放置在输入的字符串切片的元素之间。请注意:
- 如果输入切片的长度为零,它将返回一个空字符串
- 如果输入定界符或分隔符为空,它将输出由字符串切片组合而成的字符串。
代码
package main
import (
"fmt"
"strings"
)
func main() {
//Case 1 s contains sep. Will output slice of length 3
res := strings.Join([]string{"www", "02405", "com"}, ".")
fmt.Println(res)
//Case 2 slice is empty. It will output a empty string
res = strings.Join([]string{}, "-")
fmt.Println(res)
//Case 3 sep is empty. It will output a string combined from the slice of strings
res = strings.Join([]string{"www", "02405", "com"}, "")
fmt.Println(res)
}
输出:
www.02405.com
www02405com