空嗎是Ruby中的String類方法,用於檢查字符串長度是否為零。
用法: str.empty?
參數:在這裏,str是要檢查的給定字符串。
返回:如果str的長度為零,則返回true,否則返回false。
範例1:
# Ruby program to demonstrate
# the empty? method
# Taking a string and
# using the method
puts "checking".empty?
puts "method".empty?
輸出:
false false
範例2:
# Ruby program to demonstrate
# the empty? method
# Taking a string and
# using the method
puts "".empty?
puts ".".empty?
輸出:
true false
相關用法
- Ruby Set empty?()用法及代碼示例
- Ruby Symbol empty?用法及代碼示例
- Ruby Matrix empty?()用法及代碼示例
- Ruby SizedQueue empty?用法及代碼示例
- Ruby Queue empty?用法及代碼示例
- Ruby StringScanner empty?用法及代碼示例
- Ruby Hash empty?用法及代碼示例
- Ruby Array class empty?()用法及代碼示例
- Ruby String chr用法及代碼示例
- Ruby String eql?用法及代碼示例
- Scala String ==用法及代碼示例
- Scala String +用法及代碼示例
- Ruby String hex用法及代碼示例
- Scala String ===用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String empty? Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。