Logo

Programming-Idioms

  • Java
  • Elixir

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 = s == nil || String.length(String.trim s) == 0
boolean blank = s == null || s.isBlank();
boolean blank = s==null || s.strip().isEmpty();

Java 11
boolean blank = s==null || s.isBlank();

Since Java 11
import org.apache.commons.lang3.StringUtils;
boolean blank = StringUtils.isBlank(s);

This uses external library Apache Commons Lang.
with Ada.Strings.Fixed;
use Ada.Strings.Fixed;
Blank := Index_Non_Blank (Str) = 0;

New implementation...