Is there a better way to create acronym from upper letters in C#?

后端 未结 6 1449
日久生厌
日久生厌 2021-01-19 00:06

What is the best way to create acronym from upper letters in C#?

Example:

Alfa_BetaGameDelta_Epsilon

Expected r

6条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-19 01:08

    var str = "Alfa_BetaGammaDelta_Epsilon";
    var abbreviation = string.Join(string.Empty, str.Where(c => c.IsUpper()));
    

提交回复
热议问题