Go语言中字符串操作常用函数介绍

栏目: Go · 发布时间: 7年前

  • 操作
//"helloogo"中是否包含"hello"
	fmt.Println(strings.Contains("helloogo", "hello"))
	fmt.Println(strings.Contains("helloogo", "goe"))

	//Join组合
	s := []string{"abc", "hello", "mike", "go"}
	buf := strings.Join(s, "_")
	fmt.Println("buf = ", buf)

	//Index 查找子串所在位置
	fmt.Println(strings.Index("abcdhello", "hello"))
	fmt.Println(strings.Index("abcdhello", "go"))

	//Repeat 重复打印
	buf = strings.Repeat("go", 3)
	fmt.Println("buf = ", buf)

	//Split 以指定的分隔符对字符串进行拆分
	buf = "hello&abc&go&mike&you"
	s2 := strings.Split(buf, "&")
	fmt.Println("s2 = ", s2)

	//Trim 去掉两头的字符
	buf = strings.Trim("      are you ok    ", " ")
	fmt.Println("buf = ", buf)

	//Fields 去掉空格,把元素放入切片中
	s3 := strings.Fields("    are you ok?    ")
	for i, data := range s3 {
		fmt.Println(i, ", ", data)
	}
  • 输出
true
false
buf =  abc_hello_mike_go
4
-1
buf =  gogogo
s2 =  [hello abc go mike you]
buf =  are you ok
0 ,  are
1 ,  you
2 ,  ok?

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

About Face 3

About Face 3

Alan Cooper、Robert Reimann、David Cronin / John Wiley & Sons / 2007-5-15 / GBP 28.99

* The return of the authoritative bestseller includes all new content relevant to the popularization of how About Face maintains its relevance to new Web technologies such as AJAX and mobile platforms......一起来看看 《About Face 3》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试