It’s difficult to say this right. Basically, I have a List, and I need to get back a string which will be the last in that list of alphabetical order. For example:
If I had the list:
{ "01", "0a2", "test" }
I would need to get back a string that would be next in the alphabetical order, for example “tf”
It’s a bit a hacky answer, but I hope that helps. Assuming you have your strings in a sorted list, I have a litte “quick-and-dirty”-method that generates an item next in alphabetic order: