日期格式化

2021-09-30 02:11:14 字數 1655 閱讀 2677

構造******dateformat使用的字串就是模扳。這個模扳的表示即

為"february 21th, 2004"的式樣。

其他模扳符號定義為:

符號            意義                      顯示形式         

舉例g              公元                        文字            

ady              年份                        數字            

2001

m              月                          文字或數字      

july或07

d              日                          數字            

10h              a.m./p.m.制的鐘點(1~12)   數字           

12h              24小時制的鐘點(0~23)      數字           

0m              分鐘                        數字            

30s              秒                          數字            

43s              毫妙                        數字            

234e              星期幾                      文字            

tuesday

d              一年中的第幾天               數字           

360f              某月中的第幾個星期幾         數字           

2w              一年中的第幾個星期           數字           

40w              乙個月中的第幾個星期         數字           

1a              a.m./p.m.標記               文字            

pmk              24小時制的鐘點(1~24)      數字           

24k              a.m./p.m.制的鐘點(0~11)   數字           

0z              時區                        文字            

eastern

'              轉義符                      分隔符          

''             單引號                      符號            

這些符號是可以隨意組合的,其中,顯示形式為"文字"的符號,使用4個或以上的重複組合將輸出長文字字串,反之輸出短字串。

如:e產生mon,而eeee則產生monday。對於顯示形式為"文字和數字"的符號,兩次以下包括兩次的復用產生數字,而兩次以上則產生文字。

另外,字串模板不單可以在建構函式中使用,更可以在程式中動態的指定、變換。

格式化日期

格式化日期 輸出形式取決於使用者計算機的文化設定。using system using system.globalization public class mainclass string date for int i 0 i format.length i d 07 11 2004 輸出 d su...

格式化日期

function dateformat datestr,types dim datestring if isdate datestr false then datestring end if select case types case 1 datestring year datestr month...

日期格式化

日期轉化一 為了達到不同的顯示效果有時,我們需要對時間進行轉化,預設格式為 2007 01 03 14 33 34 要轉化為其他格式,要用到datetime.tostring的方法 string,iformatprovider 如下所示 using system using system.globa...