字符串.title伪()函数返回字符串s与字符串,其开始映射到它们的Unicode标题大写单词的所有Unicode字母的副本。这个方法属于字符串包。
Syntax:
It returns the string.
示例 1:
func Title(s string) string
输出:
// Golang program to illustrate the strings.Title() function
package main
import (
"fmt"
"strings"
)
// Main function
func main() {
fmt.Println(strings.Title("geeks for geeks"))
}
示例 2:
Geeks For Geeks
输出:
// Golang program to illustrate the strings.Title() function
package main
import (
"fmt"
"strings"
)
// Main function
func main() {
fmt.Println(strings.Title("computer science portal"))
}