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

后端 未结 16 1253
夕颜
夕颜 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:32

    If you are willing to require ActiveSupport you can just use the #blank? method, which is defined for both NilClass and String.

提交回复
热议问题