1、datetime 數字型
system.datetime currenttime=new system.datetime();
1.1 取當前年月日時分秒
currenttime=system.datetime.now;
1.2 取當前年
int 年=currenttime.year;
1.3 取當前月
int 月=currenttime.month;
1.4 取當前日
int 日=currenttime.day;
1.5 取當前時
int 時=currenttime.hour;
1.6 取當前分
int 分=currenttime.minute;
1.7 取當前秒
int 秒=currenttime.second;
1.8 取當前毫秒
int 毫秒=currenttime.millisecond;
(變數可用中文)
1.9 取中文日期顯示——年月日時分
string stry=currenttime.tostring("f"); //不顯示秒
1.10 取中文日期顯示_年月
string strym=currenttime.tostring("y");
1.11 取中文日期顯示_月日
string strmd=currenttime.tostring("m");
1.12 取中文年月日
string strymd=currenttime.tostring("d");
1.13 取當前時分,格式為:14:24
string strt=currenttime.tostring("t");
1.14 取當前時間,格式為:2003-09-23t14:46:48
string strt=currenttime.tostring("s");
1.15 取當前時間,格式為:2003-09-23 14:48:30z
string strt=currenttime.tostring("u");
1.16 取當前時間,格式為:2003-09-23 14:48
string strt=currenttime.tostring("g");
1.17 取當前時間,格式為:tue, 23 sep 2003 14:52:40 gmt
string strt=currenttime.tostring("r");
1.18獲得當前時間 n 天後的日期時間
datetime newday = datetime.now.adddays(100);
define的一些使用方法
1.可以對一些常量 字串進行巨集定義,在預處理過程中進行替換,而不是在編譯過程中。define pi 3.1415926 2.也可以對資料型別進行巨集定義,這樣與 typedef 效果相同 typedef為 c語言的關鍵字,作用是為一種資料型別定義乙個新的名字。typedef unsigned ch...
NSString的一些使用方法
else 6.拼接字串 nslog string1 7.替換字串 1.直接替換字串 string3 stringbyreplacingoccurrencesofstring 男 withstring ff nslog string1 2.給定範圍替換 nsrange range string6 st...
sed的一些使用方法
用sed如何輸出指定範圍的行,輸出的是1 5行 sed n 1,5p filename 如果要求輸出的是1,9,11,33行 sed n 1p 9p 11p 33p urfile 替換 sed i s xmx4096m xmx2048m g mapred site.xml 注釋 把全文的 xmx40...