Convert First letter of every word to Uppercase in R Programming – str_to_title() Function

str_to_title() Function in R Language is used to convert the first letter of every word of a string to Uppercase and the rest of the letters are converted to lower case.

Note: This function uses 'stringr' library.

Syntax: str_to_title(string)

Parameter:
string: string to be converted

Example 1:




# R Program to illustrate 
# the use of str_to_title function
  
# Loading Library
library(stringr)
  
# Creating a string
str <- "Beginner for Beginner"
  
# Calling str_to_title() function
str_to_title(str


Output:

[1] "Beginner For Beginner"

Example 2:




# R Program to illustrate 
# the use of str_to_title function
  
# Loading Library
library(stringr)
  
# Creating a string
str <- "Beginner FOR Beginner"
  
# Calling str_to_title() function
str_to_title(str


Output:

[1] "Beginner For Beginner"

Contact Us