在 Ruby 中,有多种方法可以拼接字符串。以下是一些常用的方法:
+
运算符:str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
puts result # 输出 "Hello World"
name = "John"
age = 30
result = "My name is #{name} and I am #{age} years old."
puts result # 输出 "My name is John and I am 30 years old."
format
方法:str1 = "Hello"
str2 = "World"
result = "%s %s" % [str1, str2]
puts result # 输出 "Hello World"
join
方法将数组中的元素拼接成字符串:words = ["Hello", "World"]
result = words.join(" ")
puts result # 输出 "Hello World"
这些方法可以根据实际需求选择使用。