Is there a simple way that I can sort characters in a string in alphabetical order June 28, 2023 by Tarik You can use LINQ: String.Concat(str.OrderBy(c => c)) If you want to remove duplicates, add .Distinct().