Is There a Better Way of Checking Nil or Length == 0 of a String in Ruby?

后端 未结 16 1259
夕颜
夕颜 2020-12-04 07:57

Is there a better way than the following to check to see if a string is nil OR has a length of 0 in Ruby?

if !my_str         


        
16条回答
  •  心在旅途
    2020-12-04 08:25

    An alternative to jcoby's proposal would be:

    class NilClass
      def nil_or_empty?
        true
      end
    end
    
    class String
      def nil_or_empty?
        empty?
      end
    end
    

提交回复
热议问题