Here is your best bet:
<br>
<br>1) Use a Math step to get the length of the @NUM_SERIE variable. (Set radio button to "String length of")
<br>
<br>2) Use Math to determine the start position of the string to cut from @NUM_SERIE, as follows: The string length from step 1 minus the length of the string to chop, plus 1. (ie. if you know you want to cut 5 characters from @NUM_SERIE, take the length of @NUM_SERIE minus 5 plus 1) So, you might set a variable named @START_POS to hold this value.
<br>
<br>3) Use Math to copy from @START_POS for the number of characters to copy. Set the radio button to "Copy string from...", and set "Base value" to the string to copy from (@NUM_SERIE), set "Modifying value" to the start position for the string copy (@START_POS), and set the "Number of characters to copy" to 5.
<br>
<br>For details of all the ways to use the Math step, or for additional help about the Math step, consult the TeleFlow help for this step.
|