<?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: how to read a dot (or fullstop) in text file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-read-a-dot-or-fullstop-in-text-file/m-p/249250#M46866</link>
    <description>&lt;P&gt;Thank you. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;LI-SPOILER&gt;&amp;nbsp;&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Feb 2016 16:54:45 GMT</pubDate>
    <dc:creator>nbonda</dc:creator>
    <dc:date>2016-02-10T16:54:45Z</dc:date>
    <item>
      <title>how to read a dot (or fullstop) in text file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-read-a-dot-or-fullstop-in-text-file/m-p/249234#M46857</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need help in reading a text file.&lt;/P&gt;
&lt;P&gt;My sas program is not reading dot (or fullstop) in character variable. It is coming out as missing value which is blank.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;sample program.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data sample;&lt;/P&gt;
&lt;P&gt;input name $&amp;nbsp; Quantity;&lt;/P&gt;
&lt;P&gt;datalines;&lt;/P&gt;
&lt;P&gt;ipad 40&lt;/P&gt;
&lt;P&gt;.&amp;nbsp; 50&lt;/P&gt;
&lt;P&gt;iphone 100&lt;/P&gt;
&lt;P&gt;;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is there any way I can&amp;nbsp; read dot (.) as it is&amp;nbsp; and see it in sas dataset.&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2016 16:25:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-read-a-dot-or-fullstop-in-text-file/m-p/249234#M46857</guid>
      <dc:creator>nbonda</dc:creator>
      <dc:date>2016-02-10T16:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to read a dot (or fullstop) in text file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-read-a-dot-or-fullstop-in-text-file/m-p/249239#M46860</link>
      <description>&lt;P&gt;If you want SAS to not convert the '.' to ' ' then you need to use $CHAR information instead of the $ informat.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sample;
  length name $20 Quantity 8 ;
  informat name $CHAR20. ;
  input name Quantity;
cards4;
ipad 40
.  50
iphone 100
;;;;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Feb 2016 16:32:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-read-a-dot-or-fullstop-in-text-file/m-p/249239#M46860</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-02-10T16:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to read a dot (or fullstop) in text file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-read-a-dot-or-fullstop-in-text-file/m-p/249250#M46866</link>
      <description>&lt;P&gt;Thank you. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;LI-SPOILER&gt;&amp;nbsp;&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2016 16:54:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-read-a-dot-or-fullstop-in-text-file/m-p/249250#M46866</guid>
      <dc:creator>nbonda</dc:creator>
      <dc:date>2016-02-10T16:54:45Z</dc:date>
    </item>
  </channel>
</rss>

