0

我在这里找到了 http://lateral8.com/articles/2010/3/5/openxml-sdk-20-export-a-datatable-to-excel.aspx 一个很棒的功能

private string getColumnName(int columnIndex)
{
    int dividend = columnIndex;
    string columnName = String.Empty;
    int modifier;

    while (dividend > 0)
    {
        modifier = (dividend - 1) % 26;
        columnName = 
            Convert.ToChar(65 + modifier).ToString() + columnName;
        dividend = (int)((dividend - modifier) / 26);
    }

    return columnName;
}

我想做类似的事情 - 提供列名并接收索引。例如,提供名称“AB”并作为结果索引接收 28。如何做到这一点?

更新:

令人惊讶的是,我在评论部分找到了解决方案

这里 https://stackoverflow.com/a/8739121/907732

在这里 https://stackoverflow.com/a/4888750/907732

4

1 回答 1

0
public static string GetColumnName(int index)
{
    const string letters = "ZABCDEFGHIJKLMNOPQRSTUVWXY";

    int NextPos = (index / 26);
    int LastPos = (index % 26);
    if (LastPos == 0) NextPos--;

    if (index > 26)
        return GetColumnName(NextPos) + letters[LastPos];
    else
        return letters[LastPos] + "";
}
于 2013-07-10T12:49:09.853 回答