.Modelica.Utilities.Strings.isEmpty

Return true if a string is empty (has only white space characters)

Information

Syntax

Strings.isEmpty(string);

Description

Returns true if the string has no characters or if the string consists only of white space characters. Otherwise, false is returned. It is intended for ASCII, white space in UTF-8 is more complicated.

Example

isEmpty("");       // returns true
isEmpty("   ");    // returns true
isEmpty("  abc");  // returns false
isEmpty("a");      // returns false

Interface

function isEmpty
  extends Modelica.Icons.Function;
  input String string;
  output Boolean result "True, if string is empty";
end isEmpty;

Generated at 2025-06-03T18:20:50Z by OpenModelicaOpenModelica 1.25.0 using GenerateDoc.mos