Es repeat()
una función incorporada en julia que se usa para devolver una string que es la repetición de una string especificada con un número específico de veces.
Sintaxis:
repetir (String::AbstractString, r::Integer)Parámetros:
- String: string o carácter especificado
- r::Integer: Número especificado de veces
Devoluciones: Devuelve una string que es la repetición de la string especificada con un número específico de veces.
Ejemplo 1:
# Julia program to illustrate # the use of String repeat() method # Create a repetition of string "gfg" # with 3 times of repetition. println(repeat("gfg", 3)) # Create a repetition of character "a" # with 4 times of repetition. println(repeat("a", 4)) # Create a repetition of string "Geeks" # with 2 times of repetition. println(repeat("Geeks", 2)) # Create a repetition of string "@#" # with 3 times of repetition. println(repeat("@#", 3))
Producción:
gfggfggfg aaaa GeeksGeeks @#@#@#
Ejemplo 2:
# Julia program to illustrate # the use of String repeat() method # Create a repetition of string "123" # with 3 times of repetition. println(repeat("123", 3)) # Create a repetition of string "22" # with 4 times of repetition. println(repeat("22", 4)) # Create a repetition of string "03210" # with 2 times of repetition println(repeat("03210", 2))
Producción:
123123123 22222222 0321003210
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA