BookmarkSubscribeRSS Feed

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

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

* 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

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Article Labels
Article Tags