BExIS.IO.Transform.Output.ExcelWriter.getColumnName C# (CSharp) Метод

getColumnName() приватный статический Метод

Given a cell name, parses the specified cell to get the column name.
private static getColumnName ( string cellName ) : string
cellName string
Результат string
        private static string getColumnName(string cellName)
        {
            // Create a regular expression to match the column name portion of the cell name.
            Regex regex = new Regex("[A-Za-z]+");
            Match match = regex.Match(cellName);

            return match.Value;
        }