The Get String List Item node takes in the string and separator along with start index and offsets provided. The node will return the string segments with length and start index values, as well as the index of string to be used to chain off this node with either itself or with a Substring or String Remove and a Index Of String.
Inputs
String (String)
The string to search through.
Separator (String)
The separator this string list uses.
StartIndex (int)
The starting index to start on this string.
Offset (int)
The offset for the string when finding the list item.
SearchFromEnd (bool)
Searches the list from the end instead.
Outputs
SegmentWithLength (String)
The string segment using the length.
SegmentWithStartIndex (String)
The string segment using the start index.
IndexOfString +1 (int)
The location on the string found (plus an offset of +1).
IndexOfString +0 (int)
The location on the string found (plus an offset of +0).
IndexOfString -1 (int)
The location on the string found (plus an offset of -1).