我有一个字符串变量strTemp,其值为" 12/1/2014",我需要得到的价值仅为" 12/2014"。我该怎么做?
strTemp = "12/1/2014"
格式化后,我希望strTemp的值为12/2014
strTemp = "12/2014"
答案 0 :(得分:1)
DateTime.Parse(strTemp).ToString("MM/yyyy")
答案 1 :(得分:0)
您也可以使用:
Convert.ToDateTime(strTemp).ToString("MM/yyyy")
或
CDate(strTemp).ToString("MM/yyyy")