From: Joshua Muheim Date: 2007-11-07T09:41:42+09:00 Subject: Is there a "||" that treats "" also as false? Hi all irb(main):001:0> "" || "asdf" => "" irb(main):002:0> nil || "asdf" => "asdf" irb(main):003:0> I'd like the first one to also return "asdf". So is there an operator that fits my needs? :-) Thanks Josh -- Posted via http://www.ruby-forum.com/.