Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

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

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 <- "geeks for geeks"
  
# Calling str_to_title() function
str_to_title(str

Output:

[1] "Geeks For Geeks"

Example 2:




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

Output:

[1] "Geeks For Geeks"
My Personal Notes arrow_drop_up
Last Updated : 03 Jun, 2020
Like Article
Save Article
Similar Reads