str_to_title()
La función en R Language se usa para convertir la primera letra de cada palabra de una string a mayúsculas y el resto de las letras se convierten a minúsculas.
Note: This function uses 'stringr' library.
Sintaxis: str_to_title(string)
Parámetro:
string: string a convertir
Ejemplo 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)
Producción:
[1] "Geeks For Geeks"
Ejemplo 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)
Producción:
[1] "Geeks For Geeks"
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA