1

当我将数字变量转换为字符变量时,我想在电话号码之间添加连字符。

例如:原来是7819601330(数字),需要是781-960-1330(字符)

谢谢!

4

1 回答 1

7

图片格式!

proc format;
picture phone
low-high="000-000-0000";
quit;

data test;
x=1234567890;
y=put(x,PHONE.);
put x= y=;
run;
于 2012-10-25T16:03:08.927 回答