String Split At (Split at a given position of string into array)
Splits a string into two at the specified offset. When the offset is given is negative, the location is counted from the end of the string.
Properties
String: Location of the string to split
Position: String position to start the slice
Output
Output-location: Location to store the output data
Example
Applying the String Split At action to the string “Hello World”
with position “5”
will return
[“Hello”, ” World”]