BookmarkSubscribeRSS Feed

[SAS 프로그래밍 고수 백승민] [IGNOREDOSEOF] 윈도우에서 ASCII hexadecimal 1A 문자 읽기

Started ‎06-11-2020 by
Modified ‎06-11-2020 by
Views 79

* 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;
 

Version history
Last update:
‎06-11-2020 10:03 PM
Updated by:
Contributors

sas-innovate-wordmark-2025-midnight.png

Register Today!

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.


Register now!

Article Labels
Article Tags