🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-06-2017 01:26 PM
(969 views)
In the past I've been able to read in a csv file to process it line-by-line, but for some reason the file I'm working on now only imports every other line. Any information you can provide is appreciated. Here's my code:
data cleaned;
missing;
infile "C:\temp\test.csv" lrecl=2000;
length lines $2000;
input lines $1-2000;
keep lines tag ;
if _N_ eq 1 then do;
find_CR_re=prxparse('/\n/'); /* Find carriage returns */
end;
retain find_CR_re;
if prxmatch(find_CR_re,lines) then tag=1; /* Looking for embedded carriage returns in line*/
run;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I believe you need INFILE statement option TRUNCOVER.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I believe you need INFILE statement option TRUNCOVER.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks. That did it! Much appreciated.