.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-11-20T19:25:51Z by OpenModelicaOpenModelica 1.24.2 using GenerateDoc.mos