* IGNOREDOSEOF Option
* 윈도우에서 ASCII hexadecimal 1A 문자 읽기;
* 옵션 참조 : http://www.sascommunity.org/wiki/IGNOREDOSEOF_Option;
* SAS 지원 중단 : http://support.sas.com/kb/45/522.html;
FILENAME DEMO 'C:\TEST.TXT';
data _null_;
file DEMO;
put 'ab' / 'c' '1A'x 'd' /'ef';
run;
data _null_;
infile demo;
input;
put _infile_ @5 _infile_ $hex6.;
run;
data _null_;
infile demo ignoredoseof;
input;
put _infile_ @5 _infile_ $hex6.;
run;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.