I am running this code:
stringvar array times:=split({Field2}," "

;
numbervar loops:=ubound(times);
numbervar i;
stringvar out;
for i:= 1 to loops do(
stringvar chnge:=times ;//3:308:1:18,6
stringvar end:= mid(chnge,instrrev(chnge,":"

+1);
stringvar back:=right(end,len(end)-instr(end,","

) ;
stringvar front:=left(end,instr(end,","

-1 );
stringvar begin:=left(chnge,instrrev(chnge,":"

);
out:=out + begin&back&"-"&front;
if i<loops then out:=out+" "

;
out
I need to only execute this code on 244 characters, then stop and add continued to the end of the results...