Logo

Programming-Idioms

  • Lisp
  • Obj-c

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.

@import Foundation;
BOOL blank=![s stringByTrimmingCharactersInSet:NSCharacterSet.whitespaceCharacterSet].length;

A variant with rangeOfCharacterFromSet: could be faster on long strings, but I'd consider this slightly preferable due to an improved readability
(setf blank (not (find #\space s :test-not #'eql)))
with Ada.Strings.Fixed;
use Ada.Strings.Fixed;
Blank := Index_Non_Blank (Str) = 0;

New implementation...