Ruby 字符串 * 方法
**String# ***
是Ruby中的一个String类方法,用于返回一个新的包含接收者整数拷贝的String。这里,整数必须大于或等于0。
语法: str * Integer
参数: 这里,str是所需的字符串,integer是拷贝的数量。
返回: 该方法返回包含接收器整数拷贝的字符串。
例1 :
# Ruby program to demonstrate
# the * method
# Taking a string and
# using the method
puts "Ruby " * 4
puts "Hey " * 2
输出
Ruby Ruby Ruby Ruby
Hey Hey
例2 :
# Ruby program to demonstrate
# the * method
# Taking a string and
# using the method
puts "Hello " * 0
puts "Copy " * 5
输出
Copy Copy Copy Copy Copy