匯入字元與數字
下面的示例使用 input 語句將源(在本例中為字串 123
)中的值讀入字元目標和數字目標。
data test;
source = '123';
numeric_destination = input(source, best.);
character_destination = input(source, $3.);
run;
下面的示例使用 input 語句將源(在本例中為字串 123
)中的值讀入字元目標和數字目標。
data test;
source = '123';
numeric_destination = input(source, best.);
character_destination = input(source, $3.);
run;