- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 12-29-2015 05:12 AM
(1324 views)
I'm trying to export (*.dat) file with hebrew dos encoding into SAS with infile command. Which encoding value should I use to convert hebrew dos into hebrew windows (so I can read values in sas data table)?
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Untested but something like below should work
data want(encoding=hebrew);
infile .... encoding='hebrew';
....;
run;