Ruby 字符串 empty?方法
empty? 是Ruby中的一个字符串类方法,用于检查字符串的长度是否为零。
语法: str.empty?
参数: 这里,str是要检查的给定字符串。
返回: 如果str的长度为0,则返回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