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


Scala String +用法及代码示例


+() 是 Ruby 中的 String 类方法,用于返回一个新字符串,该新字符串包含与给定字符串连接的其他指定字符串。

用法: str + other_str

Parameters: 这里,str和other_str是要连接的字符串。

返回:返回连接的字符串。

示例 1:


#ruby 2.3.1  
     
# Ruby program to demonstrate 
# the + method 
     
# Taking a string and 
# using the method 
puts "Hello " + "Geeks!"
puts "Ruby " + "String"

输出:

Hello Geeks!
Ruby String

示例 2:


#ruby 2.3.1  
     
# Ruby program to demonstrate 
# the + method 
     
# Taking a string and 
# using the method 
puts "Hey " + "Champ"
puts "Kirti " + "Mangal"

输出:

Hey Champ
Kirti Mangal

相关用法


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