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


Ruby String chomp用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String chomp Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。