strMid (Function) |
Top Previous Next |
strMid will return a specified sub-string from a string.
Note that the returned string is a dynamic string.
Input: str : STRING String that is to be extracted from.
start : INT Start position from the left for extracted string.
length : INT Default 999 Number of characters to return from the "start" position. If not assigned, then the rest of 'str' is returned.
Returns: STRING The extracted string.
Declaration: FUNCTION strMid : STRING;
Example: INCLUDE rtcu.inc |