Revision b29f01ad-a25d-421c-b93b-a086fd1c75df - Code Golf Stack Exchange
# [Vyxal](https://github.com/Vyxal/Vyxal) `jr`, 6 bytes
```
ƛkzẆḢṅ
```
[Try it Online!](https://vyxal.pythonanywhere.com/?v=2#WyJqciIsIiIsIsaba3rhuobhuKLhuYUiLCIiLCJoZWxsbyB3b3JsZCJd)
Flags are unintentional. -5 thanks to tybocopperkettle.
```
ƛ # For each character
Ẇ # Split, keeping the delimeter
kz # The lowercase alphabet, backwards
Ẇ # On that character
Ḣ # Remove the first string (all letters before that character)
ṅ # Concatenate the remaining strings.
```