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


Ruby String chomp!用法及代碼示例


mp!是Ruby中的String類方法,用於返回新的String,並將給定的記錄分隔符從str的結尾移除(如果存在)。如果未從默認Ruby記錄分隔符t中更改$/,chomp方法還將刪除回車符(即將刪除\ n,\ r和\ r \ n)。如果$/是一個空字符串,它將從字符串中刪除所有結尾的換行符。如果未進行任何修改,它將返回nil。

用法: str.chomp!

參數:在這裏,str是給定的字符串。


返回:一個沒有結尾的記錄分隔符的新字符串,如果沒有進行任何更改,則為nil。

範例1:

# Ruby program to demonstrate  
# the chomp! method  
       
# Taking a string and  
# using the method  
puts "Ruby".chomp! 
puts "Ruby\r\n".chomp 

輸出:


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




相關用法


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