I currently use the following line of script to retrieve elements 4 and 5 of the data in cell at column 10 of row 1.
%K = %[%(sheet1, 10,1),4:5];
The data in the cell has now changed and has some user inputted text at the beginning. This text can be of variable length which means that the elements I wish to retrieve are no longer in the set positions of 4 and 5. My plan is to retrieve the data elements by using their position from the end of the value, as opposed to the beginning. Is it possible to do this in lab talk? Or do I have to put the value of the cell into a variable and perform some manipulation using C?