<?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: Working with text file with blank rows between fields in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265473#M52209</link>
    <description>&lt;P&gt;You should be able to use a standard input/infile read method.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp;For data that starts on row 8 - firstobs=8&lt;/P&gt;
&lt;P&gt;2. For multiple lines use either / or # to read the lines. I would consider each record 3 lines so that you can ignore the last record.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is untested so likely buggy, but hopefully gets you started.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
informat date anydtdte. title $40. URL $256.;
infile 'your path to file' dsd truncover;

input #1 date title $
         #2 URL $
         #3 Blank $;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 21 Apr 2016 16:58:53 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-04-21T16:58:53Z</dc:date>
    <item>
      <title>Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265464#M52205</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a text file that i'm importing into a sas table and that part works correctly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I'm trying to do is create one line of data when the data is on 2 lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example The data I want starts on row 8.&amp;nbsp; Everything below that is either 1 or 2 rows with a blank row inbetween the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Feb 15, 2012. Testing how data is working. &lt;A href="http://www.test.com" target="_blank"&gt;www.test.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mar 16, 2013&amp;nbsp; Fake book entry.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.book.com" target="_blank"&gt;www.book.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jan 02, 2011&amp;nbsp; Test title. Frank Testing&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.titlestore.com" target="_blank"&gt;www.titlestore.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I need the data in my table to look like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Feb 15, 2012. Testing how data is working. &lt;A href="http://www.test.com" target="_blank"&gt;www.test.com&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Mar 16, 2013&amp;nbsp; Fake book entry. &lt;A href="http://www.book.com" target="_blank"&gt;www.book.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Jan 02, 2011&amp;nbsp; Test title. Frank Testing. &lt;A href="http://www.titlestore.com" target="_blank"&gt;www.titlestore.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 16:26:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265464#M52205</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2016-04-21T16:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265473#M52209</link>
      <description>&lt;P&gt;You should be able to use a standard input/infile read method.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp;For data that starts on row 8 - firstobs=8&lt;/P&gt;
&lt;P&gt;2. For multiple lines use either / or # to read the lines. I would consider each record 3 lines so that you can ignore the last record.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is untested so likely buggy, but hopefully gets you started.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
informat date anydtdte. title $40. URL $256.;
infile 'your path to file' dsd truncover;

input #1 date title $
         #2 URL $
         #3 Blank $;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Apr 2016 16:58:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265473#M52209</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-21T16:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265479#M52211</link>
      <description>&lt;P&gt;May need to add N=3 option on the INFILE to use &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;'s suggestion.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 17:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265479#M52211</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-04-21T17:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265482#M52212</link>
      <description>&lt;P&gt;Thank you for the reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was doing this in my table after I brought the data in.&amp;nbsp; I bring it in as it is in the text file.&amp;nbsp; The pattern I found was that in some cases there are 1 or 2 lines that make up the line and each are followed by a blank row.&amp;nbsp; I have used the retain statement and this code which seems to be working, but I'm having a hard time when to output the row once they are concatenated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data raw_ ; 
	length temp $400;	
	set raw(firstobs=8) ;
	retain temp ;
	if text eq '' then temp = '' ;
	if text ne '' then do ;
		if length(temp) = 1 then temp = text ;
		else do ;
			temp = catx(' ', temp, text) ;			
		end ;
	end ;
run ;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it recommended to try and do this check on import? The reason I just bring in each line as it's own row is to allow me to use SAS to break the data up.&amp;nbsp; This process will run multiple times with different data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 17:55:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265482#M52212</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2016-04-21T17:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265485#M52214</link>
      <description>&lt;P&gt;If your file structure is consistent across files you should fix it in the import step, rather than post processing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 17:58:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265485#M52214</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-21T17:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265491#M52219</link>
      <description>&lt;P&gt;It's not as consistant as I would like.&amp;nbsp; I think I have to do it post processing.&amp;nbsp; At least to start.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to check ahead to see if the next row is blank then I could output at that point?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 18:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265491#M52219</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2016-04-21T18:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265546#M52240</link>
      <description>&lt;P&gt;&lt;FONT face="comic sans ms,sans-serif" size="3"&gt;I wrote a program to "look ahead" a little while back and modified it to work with your data as it appears here.&amp;nbsp; This will not work well if the lines are not separated by a blank line.&amp;nbsp; Anyway, the technique of reading the buffer and examining it before deciding to output the text may be useful.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;%let linesize = 80;&lt;BR /&gt;&lt;BR /&gt;data input_text (keep = text);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile datalines eof=eof;&amp;nbsp; * use eof=label&amp;nbsp;&amp;nbsp;&amp;nbsp; with datalines, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; use end=variable with an input file;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; length buffer text&amp;nbsp; $&amp;nbsp; &amp;amp;linesize;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; retain text;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; input buffer $ 1-&amp;amp;linesize; * Read the next input line;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (strip(buffer) = '') then do;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;eof:&amp;nbsp;&amp;nbsp;&amp;nbsp; put 'buffer empty or eof so output "' text '"';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (strip(text) ^= '') then&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text = '';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else do;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put 'buffer not empty so append "' buffer '" to text';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text = catx(' ', text, buffer);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;&lt;BR /&gt;datalines;&lt;BR /&gt;Feb 15, 2012. Testing how data is working. &lt;A href="http://www.test.com" target="_blank"&gt;www.test.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Mar 16, 2013&amp;nbsp; Fake book entry. &lt;BR /&gt;&lt;A href="http://www.book.com" target="_blank"&gt;www.book.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Jan 02, 2011&amp;nbsp; Test title. Frank Testing&lt;BR /&gt;&lt;A href="http://www.titlestore.com" target="_blank"&gt;www.titlestore.com&lt;/A&gt;&lt;BR /&gt;;&lt;BR /&gt;*run; * RUN not needed when reading datalines;&lt;BR /&gt;/*&lt;BR /&gt;From log:&lt;BR /&gt;&lt;BR /&gt;buffer not empty so append "Feb 15, 2012. Testing how data is working. &lt;A href="http://www.test.com" target="_blank"&gt;www.test.com&lt;/A&gt; " to text&lt;BR /&gt;buffer empty or eof so output "Feb 15, 2012. Testing how data is working. &lt;A href="http://www.test.com" target="_blank"&gt;www.test.com&lt;/A&gt; "&lt;BR /&gt;buffer not empty so append "Mar 16, 2013&amp;nbsp; Fake book entry. " to text&lt;BR /&gt;buffer not empty so append "&lt;A href="http://www.book.com" target="_blank"&gt;www.book.com&lt;/A&gt; " to text&lt;BR /&gt;buffer empty or eof so output "Mar 16, 2013&amp;nbsp; Fake book entry. &lt;A href="http://www.book.com" target="_blank"&gt;www.book.com&lt;/A&gt; "&lt;BR /&gt;buffer not empty so append "Jan 02, 2011&amp;nbsp; Test title. Frank Testing " to text&lt;BR /&gt;buffer not empty so append "&lt;A href="http://www.titlestore.com" target="_blank"&gt;www.titlestore.com&lt;/A&gt; " to text&lt;BR /&gt;buffer empty or eof so output "Jan 02, 2011&amp;nbsp; Test title. Frank Testing &lt;A href="http://www.titlestore.com" target="_blank"&gt;www.titlestore.com&lt;/A&gt; "&lt;BR /&gt;*/&lt;BR /&gt;proc sql;&lt;BR /&gt;select * from input_text;&lt;BR /&gt;/*&lt;BR /&gt;text&lt;BR /&gt;--------------------------------------------------------------------------------&lt;BR /&gt;Feb 15, 2012. Testing how data is working. &lt;A href="http://www.test.com&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" target="_blank"&gt;www.test.com&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/A&gt; &amp;nbsp;&lt;BR /&gt;Mar 16, 2013&amp;nbsp; Fake book entry. &lt;A href="http://www.book.com&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" target="_blank"&gt;www.book.com&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/A&gt; &amp;nbsp;&lt;BR /&gt;Jan 02, 2011&amp;nbsp; Test title. Frank Testing &lt;A href="http://www.titlestore.com&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;" target="_blank"&gt;www.titlestore.com&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/A&gt; &amp;nbsp;&lt;BR /&gt;*/&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 22:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265546#M52240</guid>
      <dc:creator>Pamela_JSRCC</dc:creator>
      <dc:date>2016-04-21T22:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265547#M52241</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16835"&gt;@jerry898969﻿&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would this be any good?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Create test data */

data have;
input string $80.;
cards;
Feb 15, 2012. Testing how data is working. www.test.com
. 
Mar 16, 2013  Fake book entry. 
www.book.com
. 
Jan 02, 2011  Test title. Frank Testing
www.titlestore.com
;

/* Concatenate lines that belong together */

data want;
length string $80 text $400; /* please adapt lengths as appropriate */
do until(string=' ' | last);
  set have end=last;
  text=catx(' ', text, string);
end;
drop string;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Apr 2016 22:51:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265547#M52241</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-04-21T22:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Working with text file with blank rows between fields</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265634#M52262</link>
      <description>&lt;P&gt;Thank you both for your replies.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FreelanceReinhard,&amp;nbsp; your solution seems to have worked perfectly.&amp;nbsp;&amp;nbsp; I'm doing some testing on it now, but it looks good.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2016 12:48:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Working-with-text-file-with-blank-rows-between-fields/m-p/265634#M52262</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2016-04-22T12:48:52Z</dc:date>
    </item>
  </channel>
</rss>

