三種方法將字串格式化為日期

2021-09-06 15:58:38 字數 3020 閱讀 4973

一:datetime.parseexact方式,截圖

二:**

using

system;

using

system.collections.generic;

using

system.componentmodel;

using

system.data;

using

system.drawing;

using

system.linq;

using

system.text;

using

system.windows.forms;

namespace

converttostring

private

void btn_convert_click(object

sender, eventargs e)

//",//

得到日期字串

txt_year.text, txt_month.text, txt_day.text);

datetime p_dt = datetime.parseexact(//

將字串轉換為日期格式

s, "

yyyy/mm/dd

", null

);

#endregion

//#region 針對windows xp或者2003系統

//string s = string.format("",

//得到日期字串

//txt_year.text, txt_month.text, txt_day.text);

//datetime p_dt = datetime.parseexact(

//將字串轉換為日期格式

//s, "yyyymmdd", null);

//#endregion

messagebox.show("

輸入的日期為: "//

彈出訊息對話方塊

+ p_dt.tolongdatestring(), "

提示!"

); }}}

三:datetime.tostring格式化日期,截圖

四:**

using

system;

using

system.collections.generic;

using

system.componentmodel;

using

system.data;

using

system.drawing;

using

system.linq;

using

system.text;

using

system.windows.forms;

namespace

tmrformat

/*引數format格式詳細用法

格式字元 關聯屬性/說明

d shortdatepattern

d longdatepattern

f 完整日期和時間(長日期和短時間)

f fulldatetimepattern(長日期和長時間)

g 常規(短日期和短時間)

g 常規(短日期和長時間)

m、m monthdaypattern

r、r rfc1123pattern

s 使用當地時間的 sortabledatetimepattern(基於 iso 8601)

t shorttimepattern

t longtimepattern

u universalsortabledatetimepattern 用於顯示通用時間的格式

u 使用通用時間的完整日期和時間(長日期和長時間)

y、y yearmonthpattern

*/private

void btn_gettime_click(object

sender, eventargs e)}}

五:convert.todatetime方式,截圖

六:**

using

system;

using

system.collections.generic;

using

system.componentmodel;

using

system.data;

using

system.drawing;

using

system.linq;

using

system.text;

using

system.windows.forms;

namespace

converttostring

private

void btn_convert_click(object

sender, eventargs e)

//",//

得到日期字串

txt_year.text, txt_month.text, txt_day.text);

datetime p_dt =convert.todatetime(p_datetime);

messagebox.show(

"輸入的日期為: "//

彈出訊息對話方塊

+ p_dt.tolongdatestring(), "

提示!"

); }}}

將字串格式化為csv資料

fputcsv 函式用於將資料格式為csv格式,以便寫入檔案或者資料庫。1.將字串寫入csv檔案中 test array array array 111 sdfsd sdds 43344 rrrr array sssssssss gdfgfd 232323 wwewe dsfds array fgf...

python的三種字串格式化方法

print hello s and s df another df 但是,有時候,我們有很多的引數要進行格式化,這個時候,乙個乙個一一對應就有點麻煩了,於是就有了第二種,字典形式的。上面那種是tuple形式的。print hello first s and second s 這種字典形式的字串格式化...

Python的三種字串格式化方法

例項 print 我叫 s,今年 u 歲了.dycc 99 我叫 dycc,今年 99 歲了.python字串格式化符號 符號 描述 c 格式化字元及其ascii碼 s格式化字串 d格式化整數 u格式化無符號整數 o格式化無符號八進位制數 x格式化無符號十六進製制數 x格式化無符號十六進製制數 大寫...