Logo

Programming-Idioms

  • Scala
  • Php

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.

$blank = !trim($s);

Php 5.4 or older.
$blank = (empty(trim($s));

Php 5.5 and after.
val blank = Option(s).forall(_.trim.isEmpty)

Use strip (Java 11) instead of trim for Unicode-awareness, or more simply use isBlank (Java 11)

Option(s) ensures that null is handled.
with Ada.Strings.Fixed;
use Ada.Strings.Fixed;
Blank := Index_Non_Blank (Str) = 0;

New implementation...