<?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 Identify and Remove Blank Pages in RTF File in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Identify-and-Remove-Blank-Pages-in-RTF-File/m-p/740930#M231547</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Is there any way in SAS to identify and remove blank pages in RTF with the SAS program?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a file with more than 100 pages, So it is hard to check each page manually every time when I rerun the output. Any input is much appreciated!&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;Regards,&lt;BR /&gt;Santhosh&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 May 2021 20:20:41 GMT</pubDate>
    <dc:creator>Santoshrk</dc:creator>
    <dc:date>2021-05-12T20:20:41Z</dc:date>
    <item>
      <title>Identify and Remove Blank Pages in RTF File</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Identify-and-Remove-Blank-Pages-in-RTF-File/m-p/740930#M231547</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Is there any way in SAS to identify and remove blank pages in RTF with the SAS program?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a file with more than 100 pages, So it is hard to check each page manually every time when I rerun the output. Any input is much appreciated!&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;Regards,&lt;BR /&gt;Santhosh&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 20:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Identify-and-Remove-Blank-Pages-in-RTF-File/m-p/740930#M231547</guid>
      <dc:creator>Santoshrk</dc:creator>
      <dc:date>2021-05-12T20:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Identify and Remove Blank Pages in RTF File</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Identify-and-Remove-Blank-Pages-in-RTF-File/m-p/741000#M231580</link>
      <description>&lt;P&gt;The rtf file is text-based, so if you know the code for the blank page, you can process it.&lt;/P&gt;
&lt;P&gt;Check this.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename sample "c:\temp\class.rtf";
ods rtf file=sample;
proc print data=sashelp.class;
run;
ods rtf close;
data _null_;
  infile sample;
  input;
  put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, rather than deleting the blank page, it would be better to modify the program so that the blank page is not generated.&lt;/P&gt;
&lt;P&gt;If you can provide the rtf with the blank page or its executable program, you may get more advice.&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 02:22:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Identify-and-Remove-Blank-Pages-in-RTF-File/m-p/741000#M231580</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2021-05-13T02:22:25Z</dc:date>
    </item>
  </channel>
</rss>

