For instance, to return 'End', I know I can use:
Code: Select all
Let>string=BeginEnd
MidStr>string,6,3,result1
Let>result2={copy(%string%,6,3)}
Was hoping for solution similar to many programming languages where if you omit the length, it will just return all the remaining characters till it hits the end of the string. Something like this...
Code: Select all
Let>string=BeginEnd
MidStr>string,6,,result1
Let>result2={copy(%string%,6)}