using System.Text.RegularExpressions;
var test = DisplayCategory.MaterialParameterField;
var regex = new Regex(@"^.*([ABCDEFGHIJKLMNOPQRSTUVWXYZ])");
var result = regex.Replace(test.ToString(), @" $1");
Console.WriteLine(result);
public enum DisplayCategory