Open In App

How to Map a Rune to Title Case in Golang?

Last Updated : 27 Sep, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Rune is a superset of ASCII or it is an alias of int32. It holds all the characters available in the world’s writing system, including accents and other diacritical marks, control codes like tab and carriage return, and assigns each one a standard number. This standard number is known as a Unicode code point or rune in the Go language.
You are allowed to map the given rune into the title case with the help of ToTitle() function. This function changes the case of the given rune(if the case of the rune is lower or upper) into title case and if the given rune is already present in title case, then this function does nothing. This function is defined under Unicode package, so for accessing this method you need to import the Unicode package in your program.

Syntax:

func ToTitle(r rune) rune

Example 1:




// Go program to illustrate how to
// map a rune to title case
package main
  
import (
    "fmt"
    "unicode"
)
  
// Main function
func main() {
  
    // Creating rune
    rune_1 := 'g'
    rune_2 := 'e'
    rune_3 := 'E'
    rune_4 := 'k'
  
    // Mapping the given rune into title case
    // Using ToTitle() function
    fmt.Printf("Result 1: %c ", unicode.ToTitle(rune_1))
    fmt.Printf("\nResult 2: %c ", unicode.ToTitle(rune_2))
    fmt.Printf("\nResult 3: %c ", unicode.ToTitle(rune_3))
    fmt.Printf("\nResult 4: %c ", unicode.ToTitle(rune_4))
    fmt.Printf("\nResult 5: %c ", unicode.ToTitle('s'))
  
}


Output:

Result 1: G 
Result 2: E 
Result 3: E 
Result 4: K 
Result 5: S 

Example 2:




// Go program to illustrate how to
// map a rune to title case
package main
  
import (
    "fmt"
    "unicode"
)
  
// Main function
func main() {
  
    // Creating rune
    rune_1 := 'r'
    rune_2 := 'U'
    rune_3 := 'n'
    rune_4 := 'E'
  
    // Mapping the given rune into title case
    // Using ToTitle() function
    fmt.Printf("Result 1: %c ", unicode.ToTitle(rune_1))
    fmt.Printf("\nResult 2: %c ", unicode.ToTitle(rune_2))
    fmt.Printf("\nResult 3: %c ", unicode.ToTitle(rune_3))
    fmt.Printf("\nResult 4: %c ", unicode.ToTitle(rune_4))    
  
}


Output:

Result 1: R 
Result 2: U 
Result 3: N 
Result 4: E 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads