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

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

    nil? can be omitted in boolean contexts. Generally, you can use this to replicate the C# code:

    return my_string.nil? || my_string.empty?
    

提交回复
热议问题