日期轉換程式

2021-06-06 18:15:20 字數 839 閱讀 4536

前兩天看到了一道題:怎麼樣把2023年11月24日轉換成為:一九九零年十一月二十四日

我雖然做出來了, 但是感覺自己做的 不是很好,請各位大蝦給予指點

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace 時間日期轉換工具

console.writeline(str2);

console.readkey();

}else

}private static string swap(string str)

}string year1=new string(year);

string month2=string.empty;

if (month.length == 1)

month2=new string(month);

}else

month2 = "十" + month[1].tostring();

}string day2 = string.empty;

if (day.length == 1)

}day2 = new string(day);

}else if (day.length == 2)

day2 = day[0].tostring();

switch (day[1])

day2 = day2 + "十" + day[1].tostring();

}return (year1 +"年"+ month2+"月" + day2+"日");}}

}

mysql中文日期轉換 mysql 日期轉換

最近使用mysql開發乙個專案,發現沒有像之前在用oracle資料中那樣有to date方法。mysql中實現日期格式化的方法為date to str 日期字串 日期格式 而且mysql中的日期格式的寫法和oracle也不同。mysql中用法為 str to date 2012 05 01 23 5...

python 日期 格式轉換 英文 日期格式轉換

一 date型轉字串 filter date date,yyyymm filter date time,hh mm 在控制器中使用必須注入 filter 模組 scope.dt1 new date 控制器中使用 scope.dt2 filter date scope.dt1,yyyy mm dd h...

日期格式轉換

像 mmmm d,yyyy 這樣的日期格式需要設定相應的 locale 才可以被正確識別。例 x june 3,2012 dateformatter setlocale nslocalealloc initwithlocaleidentifier en us autorelease dateform...