I\'m trying to remove the lower case letters on a TextBox..
TextBox
For example, short alpha code representing the insurance (e.g., \'BCBS\' for \'Blue Cross B
string caps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string.Join("", "Blue Cross Blue Shield".Select(c => caps.IndexOf(c) > -1 ? c.ToString() : "") .ToArray());