2012-11-02 248 views

回答

4
Console.WriteLine(DateTime.Now.ToString("ddMMyyyy")); 

產生02112012

如果您需要進一步的客戶的日期格式,這link應該是有幫助=)

+0

thnks ...會嘗試,讓你知道 如果日期存儲在本地變量Bdate然後? – user1791077

+0

是的,如果你已經有一個'DateTime'對象,只需使用'myObject.ToString(「ddMMyyyy」);'' –

1

像這樣:

// parse the original string value into DateTime. 
DateTime dt = DateTime.ParseExact("2012-11-02", "yyyy-MM-dd", 
    CultureInfo.CurrentCulture); 

// emit to your desired format. 
string bookingIdFormattedDate = dt.ToString("ddMMyyyy"); 

// bookingIdFormattedDate should be "02112012" 

乾杯。

0
string dateString = "2012-10-01"; 
DateTime date = DateTime.ParseExact(dateString, "yyyy-MM-dd", new DateTimeFormatInfo()); 
string result=date.ToString("ddmmyyyy"); 
相關問題