.OpenModelica.Scripting.strtok

Information

Splits the strings at the places given by the token, for example:
  strtok("abcbdef","b") => {"a","c","def"}
  strtok("abcbdef","cd") => {"ab","ef"}

Interface

function strtok
  input String string;
  input String token;
  output String[:] strings;
end strtok;

Generated at 2024-07-26T18:16:02Z by OpenModelicaOpenModelica 1.23.1 using GenerateDoc.mos