strtrim()
La función en R Language se usa para recortar una string a un ancho de visualización especificado.
Sintaxis: strtrim(x, ancho)
Parámetros:
x: ancho del vector de caracteres
: ancho especificado
Ejemplo 1:
# R program to trim a string # to specified width # Creating a vector x1 <- "GeeksforGeeks" x2 <- "R Programming" # Calling strtrim() function strtrim(x1, 5) strtrim(x2, 7)
Producción:
[1] "Geeks" [1] "R Progr"
Ejemplo 2:
# R program to trim a string # to specified width # Creating a vector x <- c("Hello", "Geeks", "GFG") # Calling strtrim() function strtrim(x, 2) strtrim(x, c(1, 2, 3))
Producción:
[1] "He" "Ge" "GF" [1] "H" "Ge" "GFG"
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