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用法及代碼示例
- Scala String +用法及代碼示例
- Scala String ===用法及代碼示例
- Ruby String chr用法及代碼示例
- Scala String =~用法及代碼示例
- Scala String ==用法及代碼示例
- Ruby String each_codepoint用法及代碼示例
- Ruby String empty?用法及代碼示例
- Ruby String include?用法及代碼示例
- Ruby String bytes用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String concat Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。