gpt4 book ai didi

go - 使用 ReplaceAllString 和 ToUpper 不起作用

转载 作者:IT王子 更新时间:2023-10-29 01:43:27 31 4
gpt4 key购买 nike

我做错了什么?为什么 ToUpper 不起作用?

package main

import (
"fmt"
"regexp"
"strings"
)

func main() {

r := regexp.MustCompile("(\\w)(\\w+)")

// Getting "sometext" instead of "SomeText"
res := r.ReplaceAllString("some text", strings.ToUpper("$1") + "$2")

fmt.Println(res)
}

最佳答案

恐怕你不能那样使用 $1$2!

我认为您正试图将“一些文本”变成“一些文本”。

Here is an alternative solution

package main

import (
"fmt"
"regexp"
"strings"
)

func main() {
r := regexp.MustCompile(`\s*\w+\s*`)
res := r.ReplaceAllStringFunc("some text", func(s string) string {
return strings.Title(strings.TrimSpace(s))
})

fmt.Println(res)
}

关于go - 使用 ReplaceAllString 和 ToUpper 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16456184/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com