Open In App

strings.ToTitleSpecial() Function in Golang With Examples

Improve
Improve
Like Article
Like
Save
Share
Report

strings.ToTitleSpecial() Function in Golang is used to returns a copy of the string s with all Unicode letters mapped to their Unicode title case, giving priority to the special casing rules.

Syntax:

func ToTitleSpecial(c unicode.SpecialCase, s string) string

Here, c is the case mapping and s is the specified string.

Example 1:




// Golang program to illustrate
// the strings.ToTitleSpecial Function
package main
  
import (
    "fmt"
    "strings"
    "unicode"
)
  
func main() {
  
    // using the function
    fmt.Println(strings.ToTitleSpecial(unicode.TurkishCase, "geeks for geeks"))
}


Output:

GEEKS FOR GEEKS

Example 2:




// Golang program to illustrate
// the strings.ToTitleSpecial Function
package main
  
import (
    "fmt"
    "strings"
    "unicode"
)
  
func main() {
  
    // using the function
    fmt.Println(strings.ToTitleSpecial(unicode.TurkishCase, "I am a student"))
}


Output:

I AM A STUDENT

Last Updated : 19 May, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads