Mid(
string:string,
int:start,
[int:length]
)
→ string
Returns length characters from string starting at position start. If length is -1 or omitted, returns from start to the end of the string.
Example:
Output( Mid("Hello To You", 6, 2) ); --> To