; str = strDate.Split(''-'');
}
else if (strDate.Contains("/"))
{
str = strDate.Split(''/'');
}
// str[0]中为年,将其各个字符转换为相应的汉字
for (int i = 0; i < str[0].Length; i++)
{
result.Append(strChinese[int.Parse(str[0][i].ToString())]);
}
result.Append("年");
// 转换月
int month = int.Parse(str);
int MN1 = month / 10;
int MN2 = month % 10;
if (MN1 > 1)
{
result.Append(strChinese[MN1]);
}
if (MN1 > 0)
{
result.Append(strChinese);
}
if (MN2 != 0)
&nbs