Ruby 字符串 empty?方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程