What is the best way to create acronym from upper letters in C#?
Example:
Alfa_BetaGameDelta_Epsilon
Expected r
string test = "Alfa_BetaGameDelta_Epsilon"; string result = string.Concat(test.Where(char.IsUpper));