MCPcopy Create free account
hub / github.com/NGSolve/ngsolve / SplitComma

Function SplitComma

comp/read_ansys.cpp:53–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51 }
52
53 static vector<string> SplitComma (const string & line)
54 {
55 vector<string> tok;
56 std::stringstream ss(line);
57 string item;
58 while (std::getline(ss, item, ','))
59 tok.push_back(Trim(item));
60 return tok;
61 }
62
63 static map<string,string> ParseParams (const vector<string> & tok)
64 {

Callers 1

ParseAbaqusInpFunction · 0.85

Calls 1

TrimFunction · 0.85

Tested by

no test coverage detected