I have a vector of strings that each equal a table row that I got by reading an excel file. Each row is in the form of:
A1;B1;C1
A2;B2;C2
A3;B3;C3
and so on.
What I would like to do is split the code into each column so that I can evaluate the columns as a vector with the same type of information. That would mean that I would get a vector like this: string vec = ["A1", "A2", "A3"];
. This basically means I would have to split the vectors whenever I encounter the ";" character. I wonder if there's an easier way of doing it, instead of a bunch of nested for loops. Also I'm sorry if I'm missing something obvious :P.