1 回答

TA貢獻(xiàn)1966條經(jīng)驗(yàn) 獲得超4個(gè)贊
在 Python 中,該capitalize()
方法將字符串的第一個(gè)字符轉(zhuǎn)換為大寫字母。
如果您想用 Go 做同樣的事情,您可以遍歷字符串內(nèi)容,然后利用unicode
包方法ToUpper將字符串中的第一個(gè)符文轉(zhuǎn)換為大寫,然后將其轉(zhuǎn)換為字符串,然后將其與其余部分連接起來原始字符串。
然而,為了您的示例,(因?yàn)槟淖址皇且粋€(gè)單詞)
package main
import (
? ? "fmt"
? ? "strings"
? ? "unicode"
)
func main() {
? ? s := "ALIREZA foo bar"
? ? loweredVal := strings.ToLower(s)
? ? fmt.Println("loweredVal:", loweredVal)
? ? toTitle := capFirstChar(loweredVal)
? ? fmt.Println("toTitle:", toTitle)
}
func capFirstChar(s string) string {
? ? for index, value := range s {
? ? ? ? return string(unicode.ToUpper(value)) + s[index+1:]
? ? }
? ? return ""
}
- 1 回答
- 0 關(guān)注
- 137 瀏覽
添加回答
舉報(bào)