當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。