溫馨提示×

Ruby字符串處理如何實現(xiàn)拼接

小樊
81
2024-11-06 03:15:35
欄目: 編程語言

在Ruby中,有多種方法可以實現(xiàn)字符串拼接。以下是一些常見的方法:

  1. 使用加號(+)操作符:
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
puts result # 輸出 "Hello World"
  1. 使用字符串插值:
name = "Alice"
age = 30
result = "My name is #{name} and I am #{age} years old."
puts result # 輸出 "My name is Alice and I am 30 years old."
  1. 使用字符串格式化:
name = "Alice"
age = 30
result = "My name is %s and I am %d years old." % [name, age]
puts result # 輸出 "My name is Alice and I am 30 years old."
  1. 使用concat方法:
str1 = "Hello"
str2 = "World"
result = str1.concat(" ")
result.concat(str2)
puts result # 輸出 "Hello World"
  1. 使用<<操作符(將一個字符串添加到另一個字符串的末尾):
str1 = "Hello"
str2 = "World"
result = str1 << " " << str2
puts result # 輸出 "Hello World"

這些方法都可以實現(xiàn)字符串拼接,你可以根據(jù)自己的需求和喜好選擇合適的方法。

0