go语言学习 strings常用函数

Posted 小鹿BAMBI

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go语言学习 strings常用函数相关的知识,希望对你有一定的参考价值。

strings包中的函数用法  参考链接http://studygolang.com/articles/88

1、strings.replace()

函数原型 func Replace(str1, old, str2, n int) string

//old是str1中的字符串,用str2替换str1中的old,一共替换n个。如果n<0,则全部替换

fmt.Println(strings.Replace("tet tet tet", "e", "es", 1))  //输出:test tet tet

fmt.Println(strings.Replace("tet tet tet", "e", "es", 2))  //输出:test test tet 

fmt.Println(strings.Replace("tet tet tet", "e", "es", -1)) //输出:test test test

以上是关于go语言学习 strings常用函数的主要内容,如果未能解决你的问题,请参考以下文章

一文了解 Go 标准库 strings 常用函数和方法

Go 语言 Strconv 库常用方法

go语言中bytes包的常用函数,Reader和Buffer的使用

go语言中strings包常用方法

GO语言常用标准库01---strings包

Go语言 | 02 for循环及常用函数的使用