BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
shl007
Obsidian | Level 7

Hi - I am using a PIPE to import multiple text files. The PIPE does recognize all files in the directory but is only importing the first line in each file? For example, if files A & B are recognized by the pipe, only the first line in A and the first line in B are imported. The file is delimited by '^'. Any ideas why only the first line of each file is imported? Below is the code I am using, including a DO-WHILE loop. I am using this as part of a macro.

 

filename output pipe %sysfunc(quote(ls -a "&pipepath"*_*.txt));

DATA WORK.testupd;
    INFILE output TRUNCOVER ;
    INPUT name $250.;/*Pull pipe in*/
    fil2read=name;
	INFILE dummy FILEVAR=fil2read END=last FIRSTOBS=1  LENGTH=len truncover
		 /*LRECL=292*/
        ENCODING="LATIN1"
        TERMSTR=CRLF
        DLM='^' 
        MISSOVER
        DSD ;

    LENGTH
        F1               $ 28	/* field1*/
        F2               $ 1	/* field2 */
        F3               $ 8  /* field3 */
        F4               $ 10  /* field4 */
        F5               $ 60	/* field5 */
        F6               $ 50	/* field6 */
;
    FORMAT
        F1               $CHAR28.
        F2               $CHAR1.
        F3               $CHAR8.
        F4               $CHAR10.
        F5               $CHAR60.
        F6               $CHAR50.
;
    INFORMAT
        F1               $CHAR28.
        F2               $CHAR1.
        F3               $CHAR8.
        F4               $CHAR10.
        F5               $CHAR60.
        F6               $CHAR50.
 ;
	do while (not last);
	INPUT
        F1               : $CHAR28.
        F2               : $CHAR1.
        F3               : $CHAR8.
        F4               : $CHAR10.
        F5               : $CHAR60.
        F6               : $CHAR50.
;
		Rundt  = today();
		format Rundt date10.;

		filenm = fil2read;

		output;
	end;
RUN;
DATA WORK.testupd;
    INFILE output TRUNCOVER ;
    INPUT name $250.;/*Pull pipe in*/
    fil2read=name;
	INFILE dummy FILEVAR=fil2read END=last FIRSTOBS=1  LENGTH=len truncover
		 /*LRECL=292*/
        ENCODING="LATIN1"
        TERMSTR=CRLF
        DLM='^' 
        MISSOVER
        DSD ;

    LENGTH
        F1               $ 28	/* field1 */
        F2               $ 1	/* field2*/
        F3               $ 8  /* field3*/
        F4               $ 10  /* field4 */
        F5               $ 60	/* field5 */
;
    FORMAT
        F1               $CHAR28.
        F2               $CHAR1.
        F3               $CHAR8.
        F4               $CHAR10.
        F5               $CHAR60.
;
    INFORMAT
        F1               $CHAR28.
        F2               $CHAR1.
        F3               $CHAR8.
        F4               $CHAR10.
        F5               $CHAR60.
;
	do while (not last);
	INPUT
        F1               : $CHAR28.
        F2               : $CHAR1.
        F3               : $CHAR8.
        F4               : $CHAR10.
        F5               : $CHAR60.
;
		Rundt  = today();
		format Rundt date10.;

		filenm = fil2read;

		output;
	end;
RUN;
1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

@shl007 wrote:

Hi Kurt - not sure to your question. How can I tell which LF character is being used? If it is using a different-than-expected LF character, is there a way I can account for that in the code? Thanks for any tips!!


Your code shows the option TERMSTR=CRLF. Which tells SAS to read the file with the Windows standard CarriageReturn/LineFeed character combination as the end of line marker. This is an operating system default. If the file is actually a UNIX file which would use LF as the end of line marker then you have told the program with the CRLF that there is only one line. If the LF should be the end of line character than either use Termstr=LF or remove the Termstr option entirely which will then use the default for the operating system involved.

View solution in original post

5 REPLIES 5
shl007
Obsidian | Level 7
I inadvertently copied my code above twice; just refer to one of the snippets.
shl007
Obsidian | Level 7

Hi Kurt - not sure to your question. How can I tell which LF character is being used? If it is using a different-than-expected LF character, is there a way I can account for that in the code? Thanks for any tips!!

ballardw
Super User

@shl007 wrote:

Hi Kurt - not sure to your question. How can I tell which LF character is being used? If it is using a different-than-expected LF character, is there a way I can account for that in the code? Thanks for any tips!!


Your code shows the option TERMSTR=CRLF. Which tells SAS to read the file with the Windows standard CarriageReturn/LineFeed character combination as the end of line marker. This is an operating system default. If the file is actually a UNIX file which would use LF as the end of line marker then you have told the program with the CRLF that there is only one line. If the LF should be the end of line character than either use Termstr=LF or remove the Termstr option entirely which will then use the default for the operating system involved.

SASKiwi
PROC Star

@shl007  - What happens if you remove TERMSTR=CRLF? 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 673 views
  • 0 likes
  • 4 in conversation