nextIndex = skipWhiteSpace(string, startIndex);
Starts scanning of "string" at position "startIndex" and skips white space. The function returns nextIndex = index of character of the first non white space character.
pure function skipWhiteSpace extends Modelica.Icons.Function; input String string; input Integer startIndex(min = 1) = 1; output Integer nextIndex; end skipWhiteSpace;