go

go字符串替换怎么实现

小亿
98
2023-10-22 17:43:14
栏目: 编程语言

在Go语言中,可以使用strings.Replace函数来实现字符串替换。该函数的定义如下:

func Replace(s, old, new string, n int) string

其中,参数s是源字符串,参数old是要被替换的字符串,参数new是替换之后的字符串,参数n表示最多替换的次数(如果n小于0,则替换所有匹配的字符串)。

下面是一个示例代码,演示了如何使用strings.Replace函数进行字符串替换:

package main

import (
	"fmt"
	"strings"
)

func main() {
	str := "hello world"
	newStr := strings.Replace(str, "world", "go", -1)
	fmt.Println(newStr) // 输出: hello go
}

在上面的代码中,我们将源字符串中的"world"替换为"go",并将替换后的结果打印出来。输出结果为"hello go"。

0
看了该问题的人还看了