vote up 5 vote down star

I find myself repeatedly looking for a clear definition of the differences of nil?, blank?, and empty? in Ruby on Rails. Here's the closest I've come:

blank? objects are false, empty, or a whitespace string. For example, "", " ", nil, [], and {} are blank.

nil? objects are instances of NilClass.

empty? objects are class-specific, and the definition varies from class to class. A string is empty if it has no characters, and an array is empty if it contains no items.

Is there anything missing, or a tighter comparison that can be made?

flag

4 Answers

vote up 10 vote down check

.nil?

can be used on any object and is true if the object is nil

.empty?

can be used on strings, arrays and hashes and returns true if:

  • String length == 0
  • Array length == 0
  • Hash length == 0

running .empty? on something that is nil will throw a NoMethodError

That is where .blank? comes in. It is implemented by Rails and will operate on any object as well as work like .empty? on strings, arrays and hashes.

nil.blank? == true
[].blank? == true
{}.blank? == true
"".blank? == true
5.blank? == false

.blank? also evaluates true on strings which are non-empty but contain only whitespace.

"  ".blank? == true
"  ".empty? == false
link|flag
1  
As mentioned in the question, some non-empty strings count as blank. – Andrew Grimm May 20 at 23:20
Thanks for catching that. – Corban Brook May 21 at 19:47
vote up 1 vote down

One difference is that .nil? and .empty? are methods that are provided by the programming language Ruby, whereas .blank? is something added by the web development framework Rails.

link|flag
vote up 2 vote down

Don't forget any? which is generally !empty?. In Rails I typically check for the presence of something at the end of a statement with if something or unless something then use blank? where needed since it seems to work everywhere.

link|flag
2  
.any? doesn't work with strings in ruby 1.9, as .any? requires enumerable, and string#each by itself doesn't work in ruby 1.9. – Andrew Grimm May 20 at 0:59
vote up 0 vote down

Just a little note about the any? recommendation: He's right that it's generally equivalent to !empty?. However, any? will return true to a string of just whitespace (ala " ").

And of course, see the 1.9 comment above, too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.