空吗是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?用法及代码示例
- Ruby String hex用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String empty? Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。