Could You, please, tell me how I can substract or add two variables in format HH:mm:ss (time)? That it would be correct…
Now I am doing:
Time → “tokenize” delim( : ) → TimeList
Time2 → “tokenize” delim( : ) → TimeList2
Substract Ints: TimeList[0]-TimeList2[0], …[1]-…[1], …[2]-…[2] = result Time. But I don’t think this one correct.