在我的数据库中,日期存储为 dd/mm/yyyy。当我检索它时,我想分别将日期拆分为字符串日期、字符串月份和字符串年份。我该怎么做? “/”将是分隔符,对吗?

最佳答案

如果您从数据库中以字符串形式获取birthDate,则可以使用 split 函数将该字符串拆分为数组,例如:

   string birthDate = "2015/02/01";
   var split = birthDate.Split('/');

如果您从数据库中获取birthDate 作为日期时间,您可以从中提取日期部分,例如:
    DateTime birthDate = DateTime.Now.Date;

    var year = birthDate.Year;
    var month = birthDate.Month;
    var day = birthDate.Day;

关于c# - 拆分字符串(生日)以获取日、月、年,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28263983/

10-11 15:14