Logo

Programming-Idioms

  • Haskell
  • Rust

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.

let blank = s.chars().all(|c| c.is_whitespace());
let blank = s.trim().is_empty();
import Data.Char (isSpace)
b = null (dropWhile isSpace s)
import Data.Char (isSpace)
blank :: Bool
blank = all isSpace s
with Ada.Strings.Fixed;
use Ada.Strings.Fixed;
Blank := Index_Non_Blank (Str) = 0;

New implementation...