Slices a string from a start index to an end index
Name | Type | Required | Multiple | Min. | Max. | Description |
---|---|---|---|---|---|---|
Text (text) | string | - | - | The text to slice | ||
Start (start) | string | - | - | The start index to slice from, if negative it will start from the end of the string, default is 0 | ||
End (end) | string | - | - | The end index to slice to, if negative it will slice from the end of the string, default is -1 |
Name | Type | Default | Required | Options | Description |
---|---|---|---|---|---|
Text (text) | string | The text to slice | |||
Start (start) | number | 0 | The start index to slice from, if negative it will start from the end of the string, default is 0 | ||
End (end) | number | -1 | The end index to slice to, if negative it will slice from the end of the string, default is -1 | ||
Use End (useEnd) | boolean | If true, the end parameter will be used as the end index to slice to, if false, it will be used as the length of the string to slice, default is false |
Name | Type | Description |
---|---|---|
Output (output) | string |