读取列值提取子字符串并重写子字符串值

时间:2014-03-24 13:09:50

标签: c# excel

我正在将数据从一张excel表复制到另一张excel表以进行比较。我只需要日期,但在列中,日期和时间都存在。所以编写代码来遍历列获取子字符串并写入。 试过的代码

        int nColumns = ws2.UsedRange.Columns.Count;
        int nRows = ws2.UsedRange.Rows.Count;

        for (int i = 3; i < nRows; i++)
        {
            for (int j = 2; j < nColumns; j++)
            {
                string order_date = ws2.Columns[i, "A" + j];
                string order_date_2 = order_date.Substring(9);
                ws2.Columns[i, "A2"] = order_date_2;
            }
        }

0 个答案:

没有答案