Ruby 字符串 << 方法
**< <() **是Ruby中的一个字符串类方法,用于将给定的对象追加到字符串中。如果对象是一个整数,那么默认情况下,它被认为是一个代码点,并在被追加之前被转换为一个字符。
语法: str << “object”
参数: 这里,str是指定的字符串,object被附加到该字符串中。
返回: 附加的字符串。
例子 1 :
#ruby 2.3.1
# Ruby program to demonstrate
# the << method
# Taking a string and
# using the method
puts "Hey " << "Champ"
puts "Kirti " << 33
输出
Hey Champ
Kirti !
例2 :
#ruby 2.3.1
# Ruby program to demonstrate
# the << method
# Taking a string and
# using the method
puts "Ruby " << "String"
puts "Hello " << "Geeks!"
输出
Ruby String
Hello Geeks!