<?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: difference between sas 9.2 and 9.4 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489500#M127832</link>
    <description>&lt;P&gt;The documentation is available online for free and i am 100% sure it explains the change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From my point of view: sas fixed a bad design decision with 9.4&lt;/P&gt;</description>
    <pubDate>Fri, 24 Aug 2018 06:37:39 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2018-08-24T06:37:39Z</dc:date>
    <item>
      <title>difference between sas 9.2 and 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489496#M127828</link>
      <description>&lt;P&gt;data s ;&lt;/P&gt;&lt;P&gt;name='a@b@c' ;&lt;/P&gt;&lt;P&gt;new=scan(name,2,'@') ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i run above program in 9.2 sas version it gives default length 200&lt;/P&gt;&lt;P&gt;but if i run same program in 9.4 sas version it gives same length like name length is 5 and new variable length is also 5.&lt;/P&gt;&lt;P&gt;can you explain that difference?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 06:02:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489496#M127828</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2018-08-24T06:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sas 9.2 and 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489500#M127832</link>
      <description>&lt;P&gt;The documentation is available online for free and i am 100% sure it explains the change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From my point of view: sas fixed a bad design decision with 9.4&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 06:37:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489500#M127832</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2018-08-24T06:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sas 9.2 and 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489501#M127833</link>
      <description>&lt;P&gt;Maxim 1: Read the Documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.3&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=p0jshdjy2z9zdzn1h7k90u99lyq6.htm&amp;amp;locale=en#p1ui6lwbqstz86n1jzsu8ifdhu5j" target="_blank"&gt;documentation of the SCAN() function&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;In a DATA step, if the SCAN function returns a value to a variable that has not yet been given a length, that variable is given the length of the first argument.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="xis-windowItem" style="box-sizing: border-box; font-weight: 600; color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial;"&gt;This behavior is different from the behavior in previous releases of SAS. In previous releases, code that created a variable with a length of 200 might have produced a variable with a length that was greater than expected.&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If you need the SCAN function to assign a variable with a value that is different from the length of the first argument, use a LENGTH statement.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;This documentation is found by:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;Go to documentation.sas.com&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;Open "SAS 9.4 and SAS Viya 3.4 Programming Documentation"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;In the navigation pane to the left, select:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;Data Step Programming&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;Functions and CALL Routines&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;Dictionary of Functions and CALL Routines&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;scroll down to the SCAN function and select it&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #333333; font-family: AvenirNext, Helvetica, Arial, sans-serif; font-size: 14.08px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;All other documentation pertinent to SAS programming is found in the same way, just follow the proper navigation paths.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 06:46:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489501#M127833</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-08-24T06:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sas 9.2 and 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489660#M127910</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209685"&gt;@thanikondharish&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;data s ;&lt;/P&gt;
&lt;P&gt;name='a@b@c' ;&lt;/P&gt;
&lt;P&gt;new=scan(name,2,'@') ;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i run above program in 9.2 sas version it gives default length 200&lt;/P&gt;
&lt;P&gt;but if i run same program in 9.4 sas version it gives same length like name length is 5 and new variable length is also 5.&lt;/P&gt;
&lt;P&gt;can you explain that difference?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;And when I open the online help for SAS as installed the first section is labeled: What's new and provides links to &lt;A href="http://support.sas.com/documentation/whatsnew/" target="_blank"&gt;http://support.sas.com/documentation/whatsnew/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;with a bunch of by version topics.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 15:59:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-sas-9-2-and-9-4/m-p/489660#M127910</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-08-24T15:59:17Z</dc:date>
    </item>
  </channel>
</rss>

