I've got a situation where I've got a long string (dynamic) to which I've been passed a series of offset/length pairs to substrings within the long string.
What's the best way to get at these substrings so they can be passed to other functions which themselves expect strings. In my case they're input to a GRAPHIC PRINT statement.
MID$(longstring, offset, length) doesn't strike me as overly efficient (I have LOTS of these to do).
Any other suggestions?
What's the best way to get at these substrings so they can be passed to other functions which themselves expect strings. In my case they're input to a GRAPHIC PRINT statement.
MID$(longstring, offset, length) doesn't strike me as overly efficient (I have LOTS of these to do).
Any other suggestions?
Comment