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;