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.
我需要在 MVS 上的 SAS 中构建一个数组
我尝试使用
ARRAY MONTHS[12] $3 ('JAN' 'FEB' 'MAR' ... 'DEC');
但这不起作用
有什么建议么?
我没有要测试的 MVS 实现。
但是为什么不试试 MONNAME3。格式?
1240 data test; 1241 x=1; 1242 y = put(x,monname3.); 1243 put x= y=; 1244 run; x=1 y=Jan
我终于弄清楚了
ARRAY MONTHS{*} JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC;