码迷,mamicode.com
首页 > 其他好文 > 详细

字符串基本操作

时间:2019-03-12 12:28:27      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:import   -o   split   图片   efi   pack   https   shadow   index   

package main import ( "fmt" "strings" ) func main() { s := "hello world" //是否包含 fmt.Println(strings.Contains(s, "hello"), strings.Contains(s, "?")) //索引 fmt.Println(strings.Index(s, "o")) ss := "1#2#345" //分割字符串 splitedStr := strings.Split(ss, "#") fmt.Println(splitedStr) //合并字符串 fmt.Println(strings.Join(splitedStr, "#")) //是否包含前缀,后缀 fmt.Println(strings.HasPrefix(s, "he"), strings.HasSuffix(s, "ld")) }

输出:
技术图片

字符串基本操作

标签:import   -o   split   图片   efi   pack   https   shadow   index   

原文地址:https://blog.51cto.com/5660061/2361626

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!