当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String empty?用法及代码示例


空吗是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


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String empty? Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。