%SubStr function
Related pages:
TEXT %SubStr( TEXT in Text, INT in idxFrom, INT in numChars )
text | Text string. |
idxFrom | Index of the first character in text string (from 1...). |
numChars | The number of characters in the result string. |
%SubStr("some text", 2, 3) ; returns the following text : "ome"
%SubStr("some text", 2, 100) ; returns the following text : "ome text"
Related pages:
Pridať komentár