<?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 _infile_  examples in data step in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/infile-examples-in-data-step/m-p/594942#M34863</link>
    <description>Hi experts i am confusing about _infie_ automatic variable can anyone give detailed explanation with example except sas documentation</description>
    <pubDate>Wed, 09 Oct 2019 05:25:21 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2019-10-09T05:25:21Z</dc:date>
    <item>
      <title>_infile_  examples in data step</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/infile-examples-in-data-step/m-p/594942#M34863</link>
      <description>Hi experts i am confusing about _infie_ automatic variable can anyone give detailed explanation with example except sas documentation</description>
      <pubDate>Wed, 09 Oct 2019 05:25:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/infile-examples-in-data-step/m-p/594942#M34863</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2019-10-09T05:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: _infile_  examples in data step</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/infile-examples-in-data-step/m-p/594943#M34864</link>
      <description>&lt;P&gt;This is the article that made me understand it&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.lexjansen.com/nesug/nesug01/cc/cc4018bw.pdf" target="_blank"&gt;https://www.lexjansen.com/nesug/nesug01/cc/cc4018bw.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 05:31:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/infile-examples-in-data-step/m-p/594943#M34864</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-10-09T05:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: _infile_  examples in data step</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/infile-examples-in-data-step/m-p/595133#M34872</link>
      <description>&lt;P&gt;_infile_ basically holds the current entire line of an external file being read. So you can treat it much like any other string variable .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Brief example:&lt;/P&gt;
&lt;PRE&gt;data example ;
   infile datalines truncover;
   input x $25.;
   put 'when read: ' _infile_;
   _infile_ = translate(_infile_,'X3L','1el');
   put 'when modified: ' _infile_;
datalines;
1 
some text
null
3
;
&lt;/PRE&gt;
&lt;P&gt;I have mostly used the variable for parsing badly structured files to find key lines in the data and executing condition Input statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 17:01:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/infile-examples-in-data-step/m-p/595133#M34872</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-10-09T17:01:34Z</dc:date>
    </item>
  </channel>
</rss>

