Rotate String

Moves the first character of a string to the end of the string.

The remaining characters move forward one position. For example, the string abcd becomes bcda.

1378

Inputs/Outputs

datatype_icon

string

The string you want to modify.

This input can also be any data type that contains only strings, such as an array or cluster of strings.
datatype_icon

first char last

The rotated string.

The data type of this output matches the data type of string.