<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Looping over data files with different line breaks using infile in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814930#M321680</link>
    <description>No control over the data files. Some are archival. I agree that another solution is to make the line breaks consistent; however, I did not find a simple solution to do so within SAS. Such a conversion would still require an infile method with TRANSLATE, thus the solution being implemented in this example already tried to achieve the same goal. Let me know if you're aware of a way to remove line breaks within the same data step while the file is being read.</description>
    <pubDate>Tue, 24 May 2022 18:30:26 GMT</pubDate>
    <dc:creator>Excelsius</dc:creator>
    <dc:date>2022-05-24T18:30:26Z</dc:date>
    <item>
      <title>Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814894#M321656</link>
      <description>&lt;P&gt;I have a code that works well to loop over text files where the full path to each file (/folder1/folder2/textfile.txt) is saved into a dataset (filepaths) under the variable&amp;nbsp;filepath. All text files are imported into a single dataset, using a single column where each row corresponds to each line in the text file.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
	set filepaths;
	infile dummy filevar=filepath termstr=lf truncover end=done;
	count=0;
	do until (done);
		input myvar $500.; 
		count + 1;
		if prxmatch("&amp;amp;some_condition", _infile_) then output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The issue is that when I try to generalize the code to read files whether they have CR or LF line breaks, the loop breaks down. This is the infile substitution I use, thanks to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;'s suggestion in an earlier post (works well for single files):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	infile dummy filevar=filepath recfm=n dlm='0A0D'x dsd end=done;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I think the issue is that the END is not defined well with this method, it seems. I get a Note in the log about "Unexpected end of file for binary input."&lt;/P&gt;
&lt;P&gt;I've tried various approaches, including a more complicated code with CALL EXECUTE, but the code was getting rather complicated and generating multiple datasets which then would have to be merged back into one. I was wondering if there is a simple solution to fix this loop instead of resorting to a messier work around with multiple unnecessary datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 15:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814894#M321656</guid>
      <dc:creator>Excelsius</dc:creator>
      <dc:date>2022-05-24T15:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814900#M321663</link>
      <description>&lt;P&gt;You don't want to use DO UNTIL() since that will fail on empty files.&amp;nbsp; Instead use DO WHILE(NOT ...) .&lt;/P&gt;
&lt;P&gt;But I suspect using RECFM=N is messing with the ability of the data step to detect the end of the current file before it has already read past it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So instead use an aggregate fileref that you can build from the list of files.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename code temp;
data _null_;
  set filepaths end=eof;
  file code ;
  if _n_=1 then put 'filename all (' ;
  put ' ' filepath :$quote.; 
  if eof then put ');' ;
run;
%include code;

data want;
  infile all recfm=n dlm='0D0A'x ;
  count+1;
  input myvar :$500.; 
  if prxmatch("&amp;amp;some_condition", _infile_) then output;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2022 18:34:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814900#M321663</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-24T18:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814901#M321664</link>
      <description>&lt;P&gt;The real question is why do you have some files with CR and others with LF (and none with CRLF???).&lt;/P&gt;
&lt;P&gt;Each OS assumes a specific character ends a record. If the file is not from your OS then you have to specify the correct terminator. Which is not going to work if attempting to read multiple files with different terminators.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps use a general system tool to replace CR with LF (or vice versa) so all the files have the same record terminator before reading into SAS.&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 16:01:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814901#M321664</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-05-24T16:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814926#M321678</link>
      <description>&lt;P&gt;Thanks Tom. DO WHILE did not make a difference in this case.&lt;/P&gt;
&lt;P&gt;I think I understand the logic behind that filename method (I think you meant to write INFILE CODE instead of ALL?).&lt;/P&gt;
&lt;P&gt;Couple issues:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;I'm not getting any output when utilizing the data _null_ step, but I can get the infile statement to work if I manually create the filename by pasting individual paths. I'm wondering if it's generating the correct file syntax. Is there a way to print the contents of CODE to check this?&lt;/LI&gt;
&lt;LI&gt;When using the manual method, I can see that the line counts are off--it continuously counts all files, instead of starting from zero for each input file as I have in my original code with the do loop. Using something like "if eof then count=0" didn't work probably for the same reason as before.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 24 May 2022 18:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814926#M321678</guid>
      <dc:creator>Excelsius</dc:creator>
      <dc:date>2022-05-24T18:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814928#M321679</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/113285"&gt;@Excelsius&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks Tom. DO WHILE did not make a difference in this case.&lt;/P&gt;
&lt;P&gt;I think I understand the logic behind that filename method (I think you meant to write INFILE CODE instead of ALL?).&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Absolutely NOT.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The file CODE contains the &lt;STRONG&gt;SAS code&lt;/STRONG&gt; generated by the first data step to define the fileref ALL that the next step will read. The %INCLUDE statement then sources the contents of CODE so that the FILENAME statement is executed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to count per file then add the FILENAME= option to the INFILE statement and reset the count when you start a new file.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  infile all recfm=n dlm='0D0A'x filename=fname;
  count+1;
  input myvar :$500.; 
  if fname ne lag(fname) then count=1;
  if prxmatch("&amp;amp;some_condition", _infile_) then output;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 May 2022 18:28:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814928#M321679</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-24T18:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814930#M321680</link>
      <description>No control over the data files. Some are archival. I agree that another solution is to make the line breaks consistent; however, I did not find a simple solution to do so within SAS. Such a conversion would still require an infile method with TRANSLATE, thus the solution being implemented in this example already tried to achieve the same goal. Let me know if you're aware of a way to remove line breaks within the same data step while the file is being read.</description>
      <pubDate>Tue, 24 May 2022 18:30:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814930#M321680</guid>
      <dc:creator>Excelsius</dc:creator>
      <dc:date>2022-05-24T18:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814932#M321681</link>
      <description>&lt;P&gt;If the goal is just to find matching lines why not just use an operating system command like grep?&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 18:35:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814932#M321681</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-24T18:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814946#M321685</link>
      <description>After some tweaking, I got the numbers working. Thanks for that tip. I had to mess with variable lengths that were preventing correct file read resolutions.&lt;BR /&gt;&lt;BR /&gt;And I had missed your include statement, that's why it wasn't making sense.&lt;BR /&gt;I think this should work, even though it's essentially two data steps instead of one. Another interesting implementation--really appreciate your tips and knowledge, Tom. If you aren't already, you should consider running a blog.</description>
      <pubDate>Tue, 24 May 2022 19:33:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814946#M321685</guid>
      <dc:creator>Excelsius</dc:creator>
      <dc:date>2022-05-24T19:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814961#M321695</link>
      <description>&lt;P&gt;When the delimiter is a string shouldn't you use DLMSTR= infile statement option?&lt;/P&gt;
&lt;P&gt;If END= is not working suggests the file is unbuffered and the EOF= option should be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't tried to test any of this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;You don't want to use DO UNTIL() since that will fail on empty files.&amp;nbsp; Instead use DO WHILE(NOT ...) .&lt;/P&gt;
&lt;P&gt;But I suspect using RECFM=N is messing with the ability of the data step to detect the end of the current file before it has already read past it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So instead use an aggregate fileref that you can build from the list of files.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename code temp;
data _null_;
  set filepaths end=eof;
  file code ;
  if _n_=1 then put 'filename all (' ;
  put ' ' filepath :$quote.; 
  if eof then put ');' ;
run;
%include code;

data want;
  infile all recfm=n dlm='0D0A'x ;
  count+1;
  input myvar :$500.; 
  if prxmatch("&amp;amp;some_condition", _infile_) then output;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 May 2022 20:38:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814961#M321695</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2022-05-24T20:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814978#M321699</link>
      <description>&lt;P&gt;DLMSTR= requires that the exact string be matched.&amp;nbsp; The request was to match either CR or LF.&amp;nbsp; Which is the how the DLM= option works.&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2022 02:19:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814978#M321699</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-25T02:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814979#M321700</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I think this should work, even though it's essentially two data steps instead of one.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;The number of steps required should not be of any concern at all.&amp;nbsp; Look for a solution that solves the problem, takes a reasonable amount of time to execute and is maintainable.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2022 02:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/814979#M321700</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-25T02:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815073#M321722</link>
      <description>Generally I agree, but if the code is longer than it has to be, it can be more work to maintain. In this case, the filename option is also about 3 times slower than my original single step DO LOOP code. I'll continue looking for ways to optimize this. If anyone knows of a way to make my original loop code work, I'd still be curious to know. Another user suggested EOF= option for unbuffered data, but I could not find a good description of its usage in SAS documentation.</description>
      <pubDate>Wed, 25 May 2022 18:32:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815073#M321722</guid>
      <dc:creator>Excelsius</dc:creator>
      <dc:date>2022-05-25T18:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815163#M321743</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/113285"&gt;@Excelsius&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Generally I agree, but if the code is longer than it has to be, it can be more work to maintain. In this case, the filename option is also about 3 times slower than my original single step DO LOOP code. I'll continue looking for ways to optimize this. If anyone knows of a way to make my original loop code work, I'd still be curious to know. Another user suggested EOF= option for unbuffered data, but I could not find a good description of its usage in SAS documentation.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You might try the OPEN=DEFER option on INFILE statement and see if that improves the speed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The EOF= option appears to work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The EOF= option on the INFILE statement is used to set the LABEL of the statement that control should be transferred to when you try to read past the end of the file.&amp;nbsp; So you could use that to jump past the DO loop so that it proceeds to the next iteration of the data step and reads the next filename from the dataset with the list of filenames.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set filepaths;
  infile dummy filevar=filepath dsd dlm='0D0A'x recfm=n eof=done;
  do count=1 by 1 ;
    input myvar ~:$char500.; 
    if prxmatch("&amp;amp;some_condition", _infile_) then output;
  end;
done:
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first line names the dataset being created. The second reads the data with the file of filenames to read.&lt;/P&gt;
&lt;P&gt;The INFILE statement says to use the FILEPATH variable as the filename to be read. Read the file using RECFM=N option and parse the strings using CR or LF as delimiter.&amp;nbsp; The DSD option will allow to detect the empty lines.&amp;nbsp; The EOF= names the label statement to jump to when you read past the current file.&lt;/P&gt;
&lt;P&gt;The DO loop sets up an infinite loop that increments COUNT once every time through the loop.&amp;nbsp; The EOF= option is what will prevent the loop from actually being infinite. It will end when the current file is finished being read.&lt;/P&gt;
&lt;P&gt;The INPUT statement reads the next "word" from the file.&amp;nbsp; The : modifier makes sure to use LIST MODE input.&amp;nbsp; The ~ modifier makes sure that quotes are NOT removed from around a "word". The $CHAR informat preserve the leading spaces in the "word".&amp;nbsp; Since MYVAR was not previously defined the 500 width on the $CHAR informat will force SAS to guess that MYVAR should be defined as length 500.&lt;/P&gt;
&lt;P&gt;The line that starts with DONE and ends with a colon is the label for where to jump when the end of the file is reached. Since it is right before end of the data step the current iteration ends when the files is finished being read.&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 03:30:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815163#M321743</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-26T03:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815490#M321889</link>
      <description>&lt;P&gt;Thanks, this looks like it could work possibly. I have to do some experimenting. My problem was that I could not figure out the correct usage for the EOF= option. A question: do you know where in SAS documentation EOF is actually explained, maybe with couple examples? I would like to read it. I had looked &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsref/n1rill4udj0tfun1fvce3j401plo.htm" target="_self"&gt;here&lt;/A&gt; for example, but the laconic explanation for EOF= is woefully insufficient there. I have not been able to find any other sources on this option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 20:29:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815490#M321889</guid>
      <dc:creator>Excelsius</dc:creator>
      <dc:date>2022-05-27T20:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Looping over data files with different line breaks using infile</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815515#M321900</link>
      <description>&lt;P&gt;To learn about using the EOF= option you should read about&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsref/n0aft06yl0q5san1h0evo23yrfmw.htm" target="_self"&gt;LABEL&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsref/p04lue2yzjvc8xn1603l5kqlw62d.htm" target="_self"&gt;GOTO statement (not sure why the page shows it as GO TO instead)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also check out&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsref/n132s7tapddkc8n1my90ekgo4v0q.htm" target="_self"&gt;LINK&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lestmtsref/p0t9xi85l04wjtn1j31cx4j4kry7.htm" target="_self"&gt;RETURN&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 May 2022 15:47:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looping-over-data-files-with-different-line-breaks-using-infile/m-p/815515#M321900</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-05-28T15:47:21Z</dc:date>
    </item>
  </channel>
</rss>

