Show TOC

OffsetLocate this document in the navigation structure

Use

If you specify an offset, a certain number of bytes of the symbol value, starting with the first byte, will not be displayed. If the offset is greater than the length of the value, nothing is displayed.

        
&symbol+offset&
         
Example

If "symbol" has the value 123456789, the following will be displayed:

&symbol&

->

123456789

&symbol+3&

->

456789

&symbol+7&

->

89

&symbol+12&

->

&symbol+0&

->

123456789