劈!是Ruby中的String類方法,用於返回刪除了最後一個字符的新String。如果字符串以\ r \ n,b結尾,則兩個字符都將被刪除。如果字符串為空,它將返回nil。
用法:str.chop!
參數:在這裏,str是給定的字符串。
返回:沒有記錄分隔符的新字符串,如果該字符串為空,則為nil。
範例1:
# Ruby program to demonstrate
# the chop! method
# Taking a string and
# using the method
puts "".chop!
puts "Ruby\r\n".chop!
輸出:
Ruby
範例2:
# Ruby program to demonstrate
# the chop! method
# Taking a string and
# using the method
puts "String\r\n\r\r\n".chop!
# Removing two characters
puts "Method".chop!.chop!
輸出:
String Meth
相關用法
- Ruby String chop用法及代碼示例
- Scala String =~用法及代碼示例
- Scala String +用法及代碼示例
- Ruby String chr用法及代碼示例
- Ruby String hex用法及代碼示例
- Ruby String eql?用法及代碼示例
- Scala String ===用法及代碼示例
- Scala String ==用法及代碼示例
- Ruby String delete_suffix!用法及代碼示例
- Ruby String dump用法及代碼示例
- Ruby String each_byte用法及代碼示例
- Ruby String each_str用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String chop! Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。