Ruby 字符串 +方法
+() 是Ruby中的一个字符串类方法,用于返回一个新的字符串,该字符串包含其他指定的字符串与给定的字符串相连接。
语法: str + other_str
参数: 这里,str和other_str是要串联的字符串。
返回: 返回串联后的字符串。
例1 :
#ruby 2.3.1
# Ruby program to demonstrate
# the + method
# Taking a string and
# using the method
puts "Hello " + "Geeks!"
puts "Ruby " + "String"
输出
Hello Geeks!
Ruby String
例2 :
#ruby 2.3.1
# Ruby program to demonstrate
# the + method
# Taking a string and
# using the method
puts "Hey " + "Champ"
puts "Kirti " + "Mangal"
输出
Hey Champ
Kirti Mangal