Substr(s1, n1, n2 )
The position in string s1 to start extracting.
If n1 is less than one, the function assumes the first character position. If n1 is greater than length of s1, the function assumes the last character position.
If n2 is less than or equal to 0, FormCalc returns an empty string. If n1 + n2 is greater than the length of s1, the function returns the substring starting at position n1 to the end of s1.
2

Substr