其他分享
首页 > 其他分享> > Go语言 字符串切片转字符串

Go语言 字符串切片转字符串

作者:互联网

[]btye 可以直接转换成 string, 但是如果有使用到 split函数的需求, 然后再 str := string([]string{}), go不支持这样的强转.

参考博客: Golang字符切片转字符串

不过go的底层帮你做了封装, 使用 strings包里面的Join函数就可以实现 Split的逆过程.

标签:强转,string,切片,Go,go,字符串,函数
来源: https://www.cnblogs.com/runninginsilence/p/16626857.html