Substring |
[This is preliminary documentation and is subject to change.]
The TOPICA Basic function Substring is used to extract a substring from an input string.
Substring(inputString, startIndex, length)
Name | Type | Description |
---|---|---|
inputString | String | The string value to extract substring from. |
startIndex | Integer | The starting index (in inputString) to extract from. NB: zero-based! |
length | Integer | The number of characters to extract. |
Substring containing length characters.
Type: String.