<?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: Basic Question in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690279#M210001</link>
    <description>&lt;P&gt;See the documentation of the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;INFILE Statement&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can define multiple delimiting characters with the DLM= option.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Oct 2020 07:15:20 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2020-10-09T07:15:20Z</dc:date>
    <item>
      <title>Max no of delimiters on INFILE statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690276#M210000</link>
      <description>&lt;P&gt;How many delimiters can we define in dlm = '' option in the infile statement ?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 09:34:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690276#M210000</guid>
      <dc:creator>Sanchit_goyal</dc:creator>
      <dc:date>2020-10-09T09:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690279#M210001</link>
      <description>&lt;P&gt;See the documentation of the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n1rill4udj0tfun1fvce3j401plo.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;INFILE Statement&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can define multiple delimiting characters with the DLM= option.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 07:15:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690279#M210001</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-10-09T07:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690280#M210002</link>
      <description>but there is a specific number to it right, like I guess 200 or 256 delimiters we can mention in delimiter option in the infile statement</description>
      <pubDate>Fri, 09 Oct 2020 07:27:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690280#M210002</guid>
      <dc:creator>Sanchit_goyal</dc:creator>
      <dc:date>2020-10-09T07:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690289#M210005</link>
      <description>&lt;P&gt;Well, with 256 delimiters there's nothing left to delimit, so that's not even a limit that makes sense.&lt;/P&gt;
&lt;P&gt;For all practical purposes, there is no limit you need to take care of, and there is none mentioned in the documentation.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 08:30:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690289#M210005</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-10-09T08:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690417#M210041</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/348936"&gt;@Sanchit_goyal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;but there is a specific number to it right, like I guess 200 or 256 delimiters we can mention in delimiter option in the infile statement&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Delimiters are single character. So too many delimiters, to get to 200 you would exhaust every letter, digit and punctuation character, means practically every character is a delimiter. Which is likely to be particularly useless as you would not have much data when done.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Examine the result of this code using many delimiters:&lt;/P&gt;
&lt;PRE&gt;data example;
   infile datalines dlm=' abcdefABCDEF123456' missover;
   input x $   ;
datalines;
abc
123
a1b2c3
aaa 333
;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or are you wanting the DLMSTR option where groups of characters are a single delimiter?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 14:30:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Max-no-of-delimiters-on-INFILE-statement/m-p/690417#M210041</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-10-09T14:30:27Z</dc:date>
    </item>
  </channel>
</rss>

