Logo

Programming-Idioms

History of Idiom 110 > diff from v92 to v93

Edit summary for version 93 by programming-idioms.org:
Admin deletes impl 5738: See 5737 and 1632 instead

Version 92

2022-05-25, 19:29:55

Version 93

2022-05-26, 07:51:09

Idiom #110 Check if string is blank

Set the boolean blank to true if the string s is empty, or null, or contains only whitespace ; false otherwise.

Idiom #110 Check if string is blank

Set the boolean blank to true if the string s is empty, or null, or contains only whitespace ; false otherwise.

Code
blank = s.nil? || s.empty?