Slice Text

Get a part of text (slice) specifying start and end positions of the slice

Get a portion of text by specifying a starting and ending position.

For example:
Using the following text: "example"

Providing a starting position of 2 and and end position of 5 the following output would be produced: "xamp".

Action Inputs

NameTypeDescription
Text to SliceStringThe text to slice
Starting positionNumberStarting position to slice from. Providing "1" will start from the first character of the text
End positionNumberThe position (index) of the last character to be included in the slice

Action Outputs

NameTypeDescription
SuccessBooleanWhether or not the action ran successfully.
Text SliceStringThe sliced text