Ruby 字符串 concat方法
concat 是Ruby中的一个字符串类方法,用于串联两个字符串对象。如果给定的对象是一个Integer,那么它将被视为一个代码点,并在连接前转换为一个字符。
语法: String_Object.concat(String_Object)
参数: 该方法可以接受字符串对象和普通字符串作为参数。如果它接受整数,那么该方法将把它们转换为字符。
返回: 该方法返回串联后的结果。
例子1 :
# Ruby program for concat method
# taking a string object
str = "Geeks"
# using the method
str.concat("ForGeeks")
# displaying the result
puts str
输出
GeeksForGeeks
例2 :
# Ruby program for concat method
# taking a string object
str = "Geeks"
# using the method
# but taking integer also inside the method
# it will convert it to character
str.concat("ForGeeks", 33)
# displaying the result
puts str
输出
GeeksForGeeks!