<?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 How can i get the data set from different delimiters ??? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177935#M302512</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to get the meaningful data set from this text file.&lt;/P&gt;&lt;P&gt;How can i get the data set from different delimiters ???&lt;/P&gt;&lt;P&gt;test.txt&lt;/P&gt;&lt;P&gt;101|jasmine/3000&lt;/P&gt;&lt;P&gt;102-roy\5000&lt;/P&gt;&lt;P&gt;103*david,7000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know the what I should do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jul 2014 05:05:58 GMT</pubDate>
    <dc:creator>KrishnaChandra</dc:creator>
    <dc:date>2014-07-14T05:05:58Z</dc:date>
    <item>
      <title>How can i get the data set from different delimiters ???</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177935#M302512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to get the meaningful data set from this text file.&lt;/P&gt;&lt;P&gt;How can i get the data set from different delimiters ???&lt;/P&gt;&lt;P&gt;test.txt&lt;/P&gt;&lt;P&gt;101|jasmine/3000&lt;/P&gt;&lt;P&gt;102-roy\5000&lt;/P&gt;&lt;P&gt;103*david,7000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know the what I should do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 05:05:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177935#M302512</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-14T05:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can i get the data set from different delimiters ???</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177936#M302513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can specify more than one delimter as per the below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA HAVE;&lt;/P&gt;&lt;P&gt;INFILE DATALINES DLM='|/-\*,';&lt;/P&gt;&lt;P&gt;INPUT ID NAME $ VALUE; &lt;/P&gt;&lt;P&gt;DATALINES;&lt;/P&gt;&lt;P&gt;101|JASMINE/3000&lt;/P&gt;&lt;P&gt;102-ROY\5000&lt;/P&gt;&lt;P&gt;103*DAVID,7000&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 05:09:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177936#M302513</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2014-07-14T05:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: How can i get the data set from different delimiters ???</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177937#M302514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;H5 class="simple"&gt;Scott_Mitchell &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;/H5&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 06:09:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177937#M302514</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-07-14T06:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert character datetime to numeric datetime?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177938#M302515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;/* when the data having multiple delemiters and different length we should give the proper position or length for the data */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA OUT_PUT;&lt;/P&gt;&lt;P&gt;INFILE DATALINES DLM='|/-\*,';&lt;/P&gt;&lt;P&gt;INPUT ID @+0 NAME $ @+0 VALUE @+0;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* DEFINE THE LENGTH AND POSITION */&lt;/P&gt;&lt;P&gt;DATALINES;&lt;/P&gt;&lt;P&gt;101|JASMINE/3000&lt;/P&gt;&lt;P&gt;102-ROY\5000&lt;/P&gt;&lt;P&gt;103*DAVID,7000&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 11:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-i-get-the-data-set-from-different-delimiters/m-p/177938#M302515</guid>
      <dc:creator>sas_lak</dc:creator>
      <dc:date>2014-07-14T11:16:34Z</dc:date>
    </item>
  </channel>
</rss>

