Ruby | String empty? Method
Syntax: str.empty? Parameters: Here, str is the given string which is to be checked. Returns: It returns true if str has a length of zero, otherwise false.Example 1:
# Ruby program to demonstrate
# the empty? method
# Taking a string and
# using the method
puts "checking".empty?
puts "method".empty?
false falseExample 2:
# Ruby program to demonstrate
# the empty? method
# Taking a string and
# using the method
puts "".empty?
puts ".".empty?
true false