String# * es un método de clase String en Ruby que se utiliza para devolver un nuevo String que contiene copias enteras del receptor. Aquí, el entero debe ser mayor o igual a 0.
Sintaxis: str * Entero
Parámetros: Aquí, str es la string requerida y entero es el número de copias.
Devoluciones: este método devuelve la string que contiene copias enteras del receptor.
Ejemplo 1:
# Ruby program to demonstrate # the * method # Taking a string and # using the method puts "Ruby " * 4 puts "Hey " * 2
Producción:
Ruby Ruby Ruby Ruby Hey Hey
Ejemplo 2:
# Ruby program to demonstrate # the * method # Taking a string and # using the method puts "Hello " * 0 puts "Copy " * 5
Producción:
Copy Copy Copy Copy Copy
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA