Extracts a part of a string.
string SUBSTR(string value, int start, int num)
string SUBSTR(string value, int start)
| Object | Data Type | Description |
|---|---|---|
| value | String | The original string to look in. |
| start | Integer | The number identifying the position in the string to start from. |
| num | Integer | The number of letters to take from the start position. |
SUBSTR("Account",2,4)
Will return "coun".