Last Updated: May 27, 2021
Use this function to get a new string that is a substring of the input string. Substring begins at the given start index and extends till end index without including end index.
Substring (end_index, start_index, input)
Input Parameter Name | Description |
---|---|
end_index | End index |
start_index | Start index |
input | input string |
Index starts with 0.
Return value | Description |
---|---|
text | Returns the substring |
Substring (3, 1, abcde)
To view all the Text functions, click here.