阅读量:0
在 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"
这些方法可以根据实际需求选择使用。