Logo

Programming-Idioms

  • C++
  • Kotlin

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.

val blank = s.isNullOrBlank()
#include <algorithm>
#include <cctype>
#include <string>
bool blank = false;
if (s.empty() || std::all_of(s.begin(), s.end(), [](char c){return std::isspace(c);})) {
      blank = true;
}

s must be of type std::string
check if s is empty or if all of its characters are spaces, horizontal tabs, newlines, vertical tabs, feeds or carriage return
with Ada.Strings.Fixed;
use Ada.Strings.Fixed;
Blank := Index_Non_Blank (Str) = 0;

New implementation...