<?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: Can anyone help me to create program for this raw data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Read-raw-data-w-special-characters/m-p/334158#M75441</link>
    <description>&lt;PRE&gt;
If you are using UE, the path should like this:


data a;
infile '/folders/myfolders/test1.txt' dlm='~' '\' '&amp;amp;' '|' ':' '/';
input id name $ sal;
run;

&lt;/PRE&gt;</description>
    <pubDate>Sun, 19 Feb 2017 03:48:28 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2017-02-19T03:48:28Z</dc:date>
    <item>
      <title>Read raw data w/ special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Read-raw-data-w-special-characters/m-p/334155#M75440</link>
      <description>&lt;P&gt;Raw data&lt;/P&gt;
&lt;P&gt;101~lilly\5000&lt;BR /&gt;102&amp;amp;jasmine|3000&lt;BR /&gt;103:rose /7000&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need a data set without special characters with 3 varialbles named &amp;nbsp;" id name and sal"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I created programm like this, but getting error&lt;/P&gt;
&lt;P&gt;data a;&lt;/P&gt;
&lt;P&gt;infile 'C:\SASUniversityEdition\myfolders\vidya\test1.txt' dlm='~' '\' '&amp;amp;' '|' ':' '/';&lt;BR /&gt;input id name $ sal;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help me to create the correct programm&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13467iA092FC4876031EAC/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Dataset.JPG" title="Dataset.JPG" /&gt;</description>
      <pubDate>Mon, 20 Feb 2017 07:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Read-raw-data-w-special-characters/m-p/334155#M75440</guid>
      <dc:creator>vidyapedii</dc:creator>
      <dc:date>2017-02-20T07:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone help me to create program for this raw data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Read-raw-data-w-special-characters/m-p/334158#M75441</link>
      <description>&lt;PRE&gt;
If you are using UE, the path should like this:


data a;
infile '/folders/myfolders/test1.txt' dlm='~' '\' '&amp;amp;' '|' ':' '/';
input id name $ sal;
run;

&lt;/PRE&gt;</description>
      <pubDate>Sun, 19 Feb 2017 03:48:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Read-raw-data-w-special-characters/m-p/334158#M75441</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-02-19T03:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can anyone help me to create program for this raw data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Read-raw-data-w-special-characters/m-p/334162#M75444</link>
      <description>&lt;P&gt;You will get errors for at least two reasons: (1)&amp;nbsp;SAS can't find the file and (2) you didn't specify the delimiters properly. Try this instead:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data a;
  infile '/folders/myfolders/vidya/test1.txt' dlm='~&amp;amp;|:/\';
  input id name $ sal;
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Feb 2017 04:16:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Read-raw-data-w-special-characters/m-p/334162#M75444</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-02-19T04:16:22Z</dc:date>
    </item>
  </channel>
</rss>

