1 文件結構 每個C/C++程式通常分為兩個文件,頭文件(保存程式的聲明)和定義文件(保持程式的實現)。 頭文件以“.h”為尾碼;C程式的定義文件以“.c”為尾碼,C++程式的定義文件通常以“.cpp”為尾碼(也有一些“.cc”、“.cxx”、“.hpp”為尾碼)。 1.1 版權和版本的聲明 每個頭 ...
目錄
點擊跳轉函數跳轉使用例子
tod.時間補全函數
anydtdtm.缺失日期讀入函數
anydtdte.缺失自動填補最早日期
1.日期格式
2.缺失日期的比較
anydtdtm.函數
data b;
a1 = "2011-01-15T12:55:00"; **完整e8601格式,可以識別;
a2 = input(a1,anydtdtm.);
b1 = "2011-01-15"; /*只有日期,可以識別*/
b2 = input(b1,anydtdtm.);
c1 = "2011-01";
c2 = input(c1,anydtdtm.); /*只有年月,可以識別*/
d1 = "2011";
d2 = input(d1,anydtdtm.); /*只有年份無法讀入,使用 anydtdte. 自動補齊最早日期後再讀入*/
e1 = "2011-01-15T12:55"; /*時間格式不完整,無法讀入,使用tod.函數或time8.函數進行補0變為標準時間*/
e2 = input(e1,anydtdtm.);
f1 = "2011/01/15"; /*日期之間是斜桿,也可以識別*/
f2 = input(f1,anydtdtm.);
g1 = "2011-01-15 12:55:00"; /*時間日期沒有T可以識別*/
g2 = input(g1,anydtdtm.);
run;
tod. 時間不完整填補
tod.函數
轉換時間一般用的 time8. 但是HH小於10,前面不會補0,用tod8. 可以補齊前後的0
data t;
input tim $;
cards;
2:22
12:12:55
21:13
2:13
;
run;
data t2;
set t;
tim2=input(tim,time8.);
format tim2 time8.;
run;
data t3;
set t2;
tim3_Tod=put(tim2,tod8.); **用tod8.函數;
tim4_Time=put(tim2,time8.);
run;
缺失自動填補最早日期
anydtdte.函數
data test;
a="2021-08";
b=input(a,anydtdte.);
format b yymmdd10.;
run;
本文來自博客園,作者:Zain·Wilson,轉載請註明原文鏈接:https://www.cnblogs.com/ZainWilson/p/16875273.html