<?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: Strange symbol attached to the end of a column in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104736#M29257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;termstr was added to the infile statement as of SAS 9.2&amp;nbsp; Which version are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Apr 2013 21:24:35 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2013-04-10T21:24:35Z</dc:date>
    <item>
      <title>Strange symbol attached to the end of a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104732#M29253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a simple data step that reads in a dataline.&amp;nbsp; However, the output has a weird symbol at the end of every row.&amp;nbsp; It looks like a very narrow and tall rectangle.&amp;nbsp; This causes problems when I try to merge this dataset with another one.&amp;nbsp; Does anyone know how to get rid of this weird symbol?&amp;nbsp;&amp;nbsp; My code and the output dataset are listed below.&amp;nbsp; Not sure if this makes a difference - I run this code directly from Unix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any input anyone may have &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data inv_group;&lt;/P&gt;&lt;P&gt;input inv_group $13.;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;ASC&lt;/P&gt;&lt;P&gt;FHA&lt;/P&gt;&lt;P&gt;FHLMC&lt;/P&gt;&lt;P&gt;FNMA&lt;/P&gt;&lt;P&gt;HCS&lt;/P&gt;&lt;P&gt;PRIVATE&lt;/P&gt;&lt;P&gt;VA&lt;/P&gt;&lt;P&gt;WO&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="3343" alt="sas1.bmp" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/3343_sas1.bmp" style="float: none;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 19:29:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104732#M29253</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2013-04-10T19:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Strange symbol attached to the end of a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104733#M29254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Was to code possibly written on a PC?&amp;nbsp; One can't tell from the picture you attached, but it is likely a CR or LF character.&amp;nbsp; See if adding an 'infile cards termstr=CRLF;' statement gets rid of the extra character.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 19:42:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104733#M29254</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-04-10T19:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Strange symbol attached to the end of a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104734#M29255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Arthur.&amp;nbsp; The code was entered from PC (PC SAS). &lt;/P&gt;&lt;P&gt;Where should I fit your suggestions into my code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code i have and its syntax is not correct.&amp;nbsp; Thank you again!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data inv_list;&lt;/P&gt;&lt;P&gt;infile cards termstr=CRLF;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;ASC&lt;/P&gt;&lt;P&gt;FHA&lt;/P&gt;&lt;P&gt;FHLMC&lt;/P&gt;&lt;P&gt;FNMA&lt;/P&gt;&lt;P&gt;HCS&lt;/P&gt;&lt;P&gt;PRIVATE&lt;/P&gt;&lt;P&gt;VA&lt;/P&gt;&lt;P&gt;WO&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 20:02:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104734#M29255</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2013-04-10T20:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Strange symbol attached to the end of a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104735#M29256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To everyone who cares to know,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this code and it worked:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data inv_list1;&lt;/P&gt;&lt;P&gt;set inv_list;&lt;/P&gt;&lt;P&gt;inv_g = compress(inv_group,compress(lowcase(inv_group),'qwertyuiopasdfghjklzxcvbnm1234567890')));&lt;/P&gt;&lt;P&gt;drop inv_group;&lt;/P&gt;&lt;P&gt;rename inv_g = inv_group;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 20:25:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104735#M29256</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2013-04-10T20:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Strange symbol attached to the end of a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104736#M29257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;termstr was added to the infile statement as of SAS 9.2&amp;nbsp; Which version are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 21:24:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104736#M29257</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-04-10T21:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Strange symbol attached to the end of a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104737#M29258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm curious how "the code that worked" has been set as the Correct Answer to your original question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 16:38:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Strange-symbol-attached-to-the-end-of-a-column/m-p/104737#M29258</guid>
      <dc:creator>jaredp</dc:creator>
      <dc:date>2013-04-12T16:38:47Z</dc:date>
    </item>
  </channel>
</rss>

