|
Mid(<string>,<value1>,<value2>) |
|
|
Will return a substring of the original string, value1 is the start point of the substring and value2 is the length of the substring.
Example:
test = Mid('amazing',2,3) ; test would now be equal to 'maz'
|