Logo

Programming-Idioms

History of Idiom 110 > diff from v98 to v99

Edit summary for version 99 by programming-idioms.org:
Admin deletes impl 5737: No such method blank

Version 98

2022-09-03, 10:19:31

Version 99

2022-09-03, 10:24:16

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.blank?