I've made an array of Strings and then I've split the String.
So in the array I've [time0, operator, time1, operator, time2 ...].
Now here is where I'm stuck, in my class Time I've the method to make a new Time of an String. So I've made a loop for resorting the array.
And my idea was to make a:
Time name1 = new Time(array[i]);
Time name2 = new Time(array[i])...;
But since I don't know how many new Times I've in each new operation...