Rotate String
- Updated2023-02-17
- 1 minute(s) read
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.

Inputs/Outputs

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.

first char last
The rotated string.
The data type of this output matches the data type of
string.