toupper()
El método en la programación R se usa para convertir la string en minúsculas en una string en mayúsculas.
Sintaxis:
toupper(s)
Return: Devuelve la string en mayúsculas.
Ejemplo 1:
# R program to convert string # from lowercase to uppercase # Given String gfg <- "Geeks For Geeks" # Using toupper() method answer <- toupper(gfg) print(answer)
Producción:
[1] "GEEKS FOR GEEKS"
Ejemplo 2:
# R program to convert string # from lowercase to uppercase # Given String gfg <- "The quick brown fox jumps over the lazy dog" # Using toupper() method answer <- toupper(gfg) print(answer)
Producción:
[1] "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG"
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA