5

在 C#/Winform 中,如果用户输入,我可以将字符串解析为日期:dd/mm/yyyy

DateTime.Parse(date).ToString();

我希望能够在没有斜杠的情况下进行解析(例如在 datagridview 或 DateTimePicker 中)。

01022012应该解析为01/02/2012

任何人都知道如何解析它DateTime.Parse

这是我的代码:

    private void dataGridView_BadgeService_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
    {
        if (dataGridView_BadgeService.Columns[e.ColumnIndex].Name == "DateDebut" || dataGridView_BadgeService.Columns[e.ColumnIndex].Name == "DateFin")
        {
            string date = Convert.ToString(e.FormattedValue).Trim();

            if (date.Length > 0)
            {
                try
                {
                    DateTime _date;
                    DateTime.TryParseExact(date, "ddMMyyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out _date);
                    date = _date.ToShortDateString();
                    dataGridView_BadgeService.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = date;
                }
                catch
                {
                   MessageBox.Show("Merci de saisir une date, ou laissez cette zone vierge", "Action-Informatique", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                   e.Cancel = true;
                }
            }
        }

    }

这是异常消息:

在此处输入图像描述

它说:“System.FormatException:字符串不被识别为日期时间验证”

4

2 回答 2

16

尝试这样的事情......

string unslashedValue = "01022012"
DateTime date;
DateTime.TryParseExact(unslashedValue, "ddMMyyyy", 
                       CultureInfo.InvariantCulture, DateTimeStyles.None, date);

...并且,使用date变量,您只需要...

string slashedValue = date.ToString("dd/MM/yyyy");
于 2013-06-27T13:31:29.863 回答
3

HuorSwords 没有(除了使用string作为输入值),但答案并没有严格回答问题:为了按要求显示日期,您需要在事后格式化为字符串:

DateTime date = DateTime.ParseExact(input, 
  "ddMMyyyy", CultureInfo.InvariantCulture);
string formattedDate = date.ToString("dd/MM/yyyy");
于 2013-06-27T13:34:57.547 回答