Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我将数字变量转换为字符变量时,我想在电话号码之间添加连字符。
例如:原来是7819601330(数字),需要是781-960-1330(字符)
谢谢!
图片格式!
proc format; picture phone low-high="000-000-0000"; quit; data test; x=1234567890; y=put(x,PHONE.); put x= y=; run;