subString
Returns a sub-string of characters starting at specific index.
Arguments
- Input string.
- Index of the first character to return as an integer. The first index is 0.
- Length of the sub-string to return as an integer.
Examples
Expression | Result |
---|---|
subString("Hello World!", 6, 5) | "World" |