concat是Ruby中的String类方法,用于连接String的两个对象。如果给定的对象是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!
相关用法
- Ruby Array concat()用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String hex用法及代码示例
- Ruby String chr用法及代码示例
- Ruby String each_codepoint用法及代码示例
- Ruby String empty?用法及代码示例
- Ruby String include?用法及代码示例
- Ruby String bytes用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String concat Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。