DateTime dt1 = Convert.ToDateTime("2013-01-03");
string a = string.Format("{0:yyyy年M月d日}", dt1); //2013年1月3日 如果想要2013年01月03日 就yyyy年MM月dd日
String[] nums = { "0零", "1一", "2二", "3三", "4四", "5五",
"6六", "7七", "8八", "9九" };
for (int i = 0; i < nums .Length ; i++)
{
string num = nums[i];
a = a.Replace(num[0].ToString (), num[1].ToString ());
}
//二零一三年一月三日
MessageBox.Show(a); |