Crear repeticiones de una string en programación R – Función strrep()

strrep()La función en R Language se usa para crear un número específico de repeticiones de una string específica.

Sintaxis: strrep(string, n)

Parámetro:
string: string especificada
n: número de repeticiones

Ejemplo 1:

# R Program to illustrate 
# the use of strrep function
  
# String to be repeated
x <- "Geeks"
  
# Calling strrep() function
strrep(x, 5)

Producción:

[1] "GeeksGeeksGeeksGeeksGeeks"

Ejemplo 2:

# R Program to illustrate 
# the use of strrep function
  
# String to be repeated
x <- "Geeks"
y <- "4 "
  
# Calling strrep() function
strrep(x, 5)
strrep(y, 5)
strrep(x, 5)

Producción:

[1] "GeeksGeeksGeeksGeeksGeeks"
[1] "4 4 4 4 4 "
[1] "GeeksGeeksGeeksGeeksGeeks"

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *