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 Code = Regex.Replace(txtDesc.text, "[a-z]", "");