<?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: Import a flat file of long string of names into SAS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90092#M25716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Geraldo,&lt;/P&gt;&lt;P&gt;add&amp;nbsp; RECFM=F and LRECL=32767 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Apr 2012 20:12:01 GMT</pubDate>
    <dc:creator>Geraldo</dc:creator>
    <dc:date>2012-04-20T20:12:01Z</dc:date>
    <item>
      <title>Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90081#M25705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a flat file consisting of a whole lot of names. It is of the form:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Adam","Robin","Jimmy","Aragon",...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so forth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the file only contains one line of names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to read this file into a data set, such that each name gets its own entry (ideally without the quotation marks). Apparently the string of names is longer than 32767 characters, which appear to be a maximum for proc import. Can I somehow circumvent this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 21:09:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90081#M25705</guid>
      <dc:creator>ArtemisFowl</dc:creator>
      <dc:date>2012-04-19T21:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90082#M25706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ... this worked for me with your data ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;data new;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;infile 'z:\names.txt' dsd lrecl=50000 pad;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;input name : $15. @@;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;NOTE: 1 record was read from the infile 'z:\names.txt'.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The minimum record length was 46447.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The maximum record length was 46447.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;NOTE: The data set WORK.NEW has 5163 observations and 1 variables.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first 5 observations ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;MARY&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;PATRICIA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;LINDA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;BARBARA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;ELIZABETH&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 21:21:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90082#M25706</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-04-19T21:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90083#M25707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Mike.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That works perfectly, thank you. It seems the dsd statement does the trick, I will look into that one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 21:28:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90083#M25707</guid>
      <dc:creator>ArtemisFowl</dc:creator>
      <dc:date>2012-04-19T21:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90084#M25708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... that DSD option&amp;nbsp; means a few things&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;file is comma-delimited&lt;/P&gt;&lt;P&gt;two consecutive commas are interpreted as a missing value&lt;/P&gt;&lt;P&gt;strip quotes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ps not "THE" Artemis Fowl I presume&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 21:38:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90084#M25708</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-04-19T21:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90085#M25709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. &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;THE Artemis Fowl would not be asking for help on an online forum. Or would he...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 21:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90085#M25709</guid>
      <dc:creator>ArtemisFowl</dc:creator>
      <dc:date>2012-04-19T21:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90086#M25710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an alternative approach -- reading one character at a time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin: 0; padding: 0; line-height: 1.1;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;%let&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; pwd = z:\;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; names;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;infile&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #800080; font-family: Courier New;"&gt;"&amp;amp;pwd\names.txt"&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;recfm&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;=n &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;unbuffered&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;eof&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;=output;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;length&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; name $&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;20&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;do&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;while&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; c &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #008080; font-family: Courier New;"&gt;$1.&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; @@;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; c = &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #800080; font-family: Courier New;"&gt;","&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;then&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; link &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;else&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; name = catt(name,c);&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;end&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;stop&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp; output:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; name = dequote(name);&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; name = &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #800080; font-family: Courier New;"&gt;""&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;keep&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; name;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;return&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;/* check. first and last three names */&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;_all_&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;close&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;listing&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;title&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #800080; font-family: Courier New;"&gt;"first three names"&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;print&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;=names(&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;obs&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;title&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #800080; font-family: Courier New;"&gt;"last three names"&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;print&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;=names(&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;firstobs&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;5161&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;obs&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;5163&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-family: Courier New; margin: 0; padding: 0;"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;title&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;listing&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; color: #0000ff; font-family: Courier New;"&gt;close&lt;/SPAN&gt;&lt;SPAN style="margin: 0; padding: 0; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;/* on Results&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;first three names&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt; Obs&amp;nbsp;&amp;nbsp;&amp;nbsp; name&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp; MARY&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp; PATRICIA&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp; LINDA&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;last three names&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt; Obs&amp;nbsp;&amp;nbsp;&amp;nbsp; name&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;5161&amp;nbsp;&amp;nbsp;&amp;nbsp; DARELL&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;5162&amp;nbsp;&amp;nbsp;&amp;nbsp; BRODERICK&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;5163&amp;nbsp;&amp;nbsp;&amp;nbsp; ALONSO&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="margin: 0; padding: 0; color: #008000; font-family: Courier New;"&gt;*/&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 22:14:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90086#M25710</guid>
      <dc:creator>chang_y_chung_hotmail_com</dc:creator>
      <dc:date>2012-04-19T22:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90087#M25711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use this code to extract the data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename names 'H:\Personal Folder\names.txt';&lt;/P&gt;&lt;P&gt;data names;&lt;/P&gt;&lt;P&gt; infile names dlm = ',''"''' lrecl = 50000;&lt;/P&gt;&lt;P&gt; input names : $15. @@;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 22:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90087#M25711</guid>
      <dc:creator>Pritish</dc:creator>
      <dc:date>2012-04-19T22:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90088#M25712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... another way to look at those first and last three names ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;data _null_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;do obs=1 to 3, lastrec-2 to lastrec;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; set new point=obs nobs=lastrec;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; put obs= name=;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;end;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;stop;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;obs=1 name=MARY&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;obs=2 name=PATRICIA&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;obs=3 name=LINDA&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;obs=5161 name=DARELL&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;obs=5162 name=BRODERICK&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;obs=5163 name=ALONSO&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 22:24:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90088#M25712</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-04-19T22:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90089#M25713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mike,&lt;/P&gt;&lt;P&gt;I don't realize you can use a value of LRECL are greater than 32767 . Maybe it is a new feature?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks.&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2012 05:10:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90089#M25713</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-04-20T05:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90090#M25714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;Hi Ksharp ... on an INFILE statement in Windows ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;LRECL=&lt;SPAN class="strongEmph" style="font-style: italic;"&gt;record-length&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 1.4em;"&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;A name="a000537742" style="font-family: inherit;"&gt;&lt;/A&gt;specifies the record length (in bytes). Under Windows, the default is 256. The value of &lt;SPAN class="strongEmph" style="font-style: italic;"&gt;record-length&lt;/SPAN&gt; can range from 1 to 1,073,741,823 (1 gigabyte)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 1.4em;"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;This was true even in V9.1 (on page 449) and I'm not sure how far back that's been the case ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 1.4em;"&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;A href="http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_91/base_hostwin_6974.pdf" title="http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_91/base_hostwin_6974.pdf"&gt;http://support.sas.com/documentation/onlinedoc/91pdf/sasdoc_91/base_hostwin_6974.pdf&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 1.4em;"&gt;&lt;STRONG style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2012 15:27:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90090#M25714</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-04-20T15:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90091#M25715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data teste;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; infile '/names.txt';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; input @;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _infile_&amp;nbsp;&amp;nbsp;&amp;nbsp; = prxchange('s/\"//',-1,_infile_);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Contador&amp;nbsp;&amp;nbsp;&amp;nbsp; = countc(_infile_,',');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Text_Buffer = _infile_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Pos_Inic&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Pos_Prox&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; do I=0 to Contador;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pos_Prox&amp;nbsp;&amp;nbsp;&amp;nbsp; = findc(Text_Buffer,',',Pos_Inic +1);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = substr(Text_Buffer, Pos_Inic + 1, Pos_Prox - 1);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text_Buffer = substr(Text_Buffer, Pos_Prox + 1, length(Text_Buffer));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; drop Contador Text_Buffer Pos_Inic Pos_Prox I;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2012 19:50:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90091#M25715</guid>
      <dc:creator>Geraldo</dc:creator>
      <dc:date>2012-04-20T19:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Import a flat file of long string of names into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90092#M25716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Geraldo,&lt;/P&gt;&lt;P&gt;add&amp;nbsp; RECFM=F and LRECL=32767 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2012 20:12:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Import-a-flat-file-of-long-string-of-names-into-SAS/m-p/90092#M25716</guid>
      <dc:creator>Geraldo</dc:creator>
      <dc:date>2012-04-20T20:12:01Z</dc:date>
    </item>
  </channel>
</rss>

