chomp是Ruby中的String類方法,用於返回新的String,並從str的末尾刪除給定的記錄分隔符(如果存在)。如果未從默認Ruby記錄分隔符t中更改$/,chomp方法還將刪除回車符(即將刪除\ n,\ r和\ r \ n)。如果$/是一個空字符串,它將從字符串中刪除所有結尾的換行符。
用法: str.chomp
參數:在這裏,str是給定的字符串。
返回:新字符串,末尾沒有記錄分隔符。
範例1:
# Ruby program to demonstrate
# the chomp method
# Taking a string and
# using the method
puts "Ruby\n".chomp
puts "Ruby\r\n".chomp
輸出:
Ruby Ruby
範例2:
# Ruby program to demonstrate
# the chomp method
# Taking a string and
# using the method
puts "String\r\n\r\r\n".chomp('')
puts "Method".chomp("tho")
輸出:
String Method
相關用法
- Ruby String chomp!用法及代碼示例
- Scala String +用法及代碼示例
- Ruby String chr用法及代碼示例
- Scala String ==用法及代碼示例
- Ruby String hex用法及代碼示例
- Scala String ===用法及代碼示例
- Ruby String eql?用法及代碼示例
- Scala String =~用法及代碼示例
- Ruby String getbyte用法及代碼示例
- Ruby String bytesize用法及代碼示例
- Ruby String ascii_only?用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String chomp Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。