当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String concat用法及代码示例


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!


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String concat Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。