<?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: Single vs doublr trailing @:s? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543836#M150357</link>
    <description>&lt;P&gt;The single @&amp;nbsp;is temporary, for the current iteration of the DATA step only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The double is permanent.&amp;nbsp; The only way to get to the next line includes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Executing another INPUT statement that does not end with&amp;nbsp;@@&lt;/LI&gt;
&lt;LI&gt;Attempting to read past the end of the line, with neither TRUNCOVER nor MISSOVER in effect&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Sun, 17 Mar 2019 21:19:46 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2019-03-17T21:19:46Z</dc:date>
    <item>
      <title>Single vs doublr trailing @:s?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543834#M150355</link>
      <description>I apologize if this question is very basic, but I, haven't been able to find a straightforward answer.&lt;BR /&gt;&lt;BR /&gt;What's the difference between using a trailing @ and a trailing @@?&lt;BR /&gt;&lt;BR /&gt;Is the trailing @ temporary (lasts for one/two iterations) while the @@ is permanent (until theree are no more values in the row)?</description>
      <pubDate>Sun, 17 Mar 2019 21:12:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543834#M150355</guid>
      <dc:creator>Syntas_error</dc:creator>
      <dc:date>2019-03-17T21:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Single vs doublr trailing @:s?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543836#M150357</link>
      <description>&lt;P&gt;The single @&amp;nbsp;is temporary, for the current iteration of the DATA step only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The double is permanent.&amp;nbsp; The only way to get to the next line includes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Executing another INPUT statement that does not end with&amp;nbsp;@@&lt;/LI&gt;
&lt;LI&gt;Attempting to read past the end of the line, with neither TRUNCOVER nor MISSOVER in effect&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Sun, 17 Mar 2019 21:19:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543836#M150357</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-03-17T21:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Single vs doublr trailing @:s?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543844#M150359</link>
      <description>&lt;P&gt;Why not play with it and see what happens?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test1;
  interation+1;
  do col=1 to 3 ;
    input x @;
    output;
  end;
cards;
1 2 3 4 5 6 
7 8 9 10 11 12
;

proc print;
run;

data test2;
  interation+1;
  do col=1 to 3 ;
    input x @@;
    output;
  end;
cards;
1 2 3 4 5 6 
7 8 9 10 11 12
; 

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Mar 2019 22:09:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543844#M150359</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-03-17T22:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Single vs doublr trailing @:s?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543852#M150362</link>
      <description>&lt;P&gt;&lt;STRONG&gt;A SINGLE trailing "@" holds the input buffer only for the current iteration of the data step&lt;/STRONG&gt; (i.e, til processing returns to the top of the data step), or is passed a subsequent INPUT statement without a trailing "@".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;A DOUBLE trailing "@" holds the input buffer indefinitely&lt;/STRONG&gt; (i.e, multiple iterations of the data step) as long as there is data in the input buffer to read.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps?&lt;/P&gt;</description>
      <pubDate>Sun, 17 Mar 2019 23:19:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Single-vs-doublr-trailing-s/m-p/543852#M150362</guid>
      <dc:creator>AndrewHowell</dc:creator>
      <dc:date>2019-03-17T23:19:39Z</dc:date>
    </item>
  </channel>
</rss>

