<?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 CSV with html input in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Import-CSV-with-html-input/m-p/489482#M2650</link>
    <description>&lt;P&gt;Such a function does not exist. It would be nice to have actually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS has no way that I know to treat multiple records as one, except by using RECFM to treat the whole file as a stream (i.e. ignore all EoL markers).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It doesn't mean it can't be done though, but it's clumsy:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  file "%sysfunc(pathname(work))\t.txt";
  put 'aaaa,"bb' / 'bb","cc,cc" ,"dd' / 'dd", eeee';
  put '1,2,3,,5';
run;     

data T1;  %* Standard behaviour;
  infile "%sysfunc(pathname(work))\t.txt" dsd missover ;
  input (A B C D E) ($);
run;

data T2;  %* Attempt to include EOL as delimiter;
  infile "%sysfunc(pathname(work))\t.txt" dsd missover dlm='2c0A0D'x ;
  input (A B C D E) ($);
run;

data T3; %* Read values one by one and complete unclosed quotes using the next record;
  array ARR[*] $ A B C D E ;
  infile "%sysfunc(pathname(work))\t.txt" dsd missover dlm='2c0A0D'x ;
  do I=1 to 5;
    input ARR[I] $ @ ;
    if first(ARR[I]) = '"' &amp;amp; first(reverse(trim(ARR[I]))) ^= '"' then do;
      input ;
      input TMP $ @;
      ARR[I]=dequote(cats(ARR[I],TMP));
    end;
  end;
  drop I TMP;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;T1&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 240pt;" border="0" width="320" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl65" style="height: 15.75pt; width: 48pt;"&gt;A&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;B&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;C&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;D&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;aaaa&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"bb&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;bb"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;cc,cc&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"dd&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;dd"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;ee&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" align="right" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;1&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;2&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;3&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;T2&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 240pt;" border="0" width="320" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl65" style="height: 15.75pt; width: 48pt;"&gt;A&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;B&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;C&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;D&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;aaaa&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"bb&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;bb"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;cc,cc&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"dd&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;dd"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;ee&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" align="right" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;1&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;2&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;3&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;T3&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 240pt;" border="0" summary="Page Layout" width="320" frame="void" rules="none" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl65" style="height: 15.75pt; width: 48pt;"&gt;A&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;B&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;C&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;D&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;aaaa&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;bbbb&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;cc,cc&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;dddd&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;ee&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" align="right" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;1&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;2&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;3&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Aug 2018 03:31:35 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2018-08-24T03:31:35Z</dc:date>
    <item>
      <title>Import CSV with html input</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Import-CSV-with-html-input/m-p/489175#M2649</link>
      <description>&lt;P&gt;Hi guys, I am trying to import a CSV which some of the columns contain html type. Currently, I am using this feature from PowerBI to handle this but I want to try to do it using SAS University Edition. Any expert can advice what similar function as shown below that I can use in SAS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Snag_2627c36c.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/22700iB6944E0C916EFE39/image-size/large?v=v2&amp;amp;px=999" role="button" title="Snag_2627c36c.png" alt="Snag_2627c36c.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 09:27:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Import-CSV-with-html-input/m-p/489175#M2649</guid>
      <dc:creator>vanness145</dc:creator>
      <dc:date>2018-08-23T09:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Import CSV with html input</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Import-CSV-with-html-input/m-p/489482#M2650</link>
      <description>&lt;P&gt;Such a function does not exist. It would be nice to have actually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS has no way that I know to treat multiple records as one, except by using RECFM to treat the whole file as a stream (i.e. ignore all EoL markers).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It doesn't mean it can't be done though, but it's clumsy:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  file "%sysfunc(pathname(work))\t.txt";
  put 'aaaa,"bb' / 'bb","cc,cc" ,"dd' / 'dd", eeee';
  put '1,2,3,,5';
run;     

data T1;  %* Standard behaviour;
  infile "%sysfunc(pathname(work))\t.txt" dsd missover ;
  input (A B C D E) ($);
run;

data T2;  %* Attempt to include EOL as delimiter;
  infile "%sysfunc(pathname(work))\t.txt" dsd missover dlm='2c0A0D'x ;
  input (A B C D E) ($);
run;

data T3; %* Read values one by one and complete unclosed quotes using the next record;
  array ARR[*] $ A B C D E ;
  infile "%sysfunc(pathname(work))\t.txt" dsd missover dlm='2c0A0D'x ;
  do I=1 to 5;
    input ARR[I] $ @ ;
    if first(ARR[I]) = '"' &amp;amp; first(reverse(trim(ARR[I]))) ^= '"' then do;
      input ;
      input TMP $ @;
      ARR[I]=dequote(cats(ARR[I],TMP));
    end;
  end;
  drop I TMP;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;T1&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 240pt;" border="0" width="320" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl65" style="height: 15.75pt; width: 48pt;"&gt;A&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;B&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;C&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;D&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;aaaa&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"bb&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;bb"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;cc,cc&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"dd&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;dd"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;ee&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" align="right" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;1&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;2&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;3&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;T2&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 240pt;" border="0" width="320" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl65" style="height: 15.75pt; width: 48pt;"&gt;A&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;B&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;C&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;D&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;aaaa&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"bb&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;bb"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;cc,cc&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;"dd&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;dd"&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;ee&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" align="right" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;1&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;2&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;3&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;T3&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 240pt;" border="0" summary="Page Layout" width="320" frame="void" rules="none" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl65" style="height: 15.75pt; width: 48pt;"&gt;A&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;B&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;C&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;D&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;E&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;aaaa&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;bbbb&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;cc,cc&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;dddd&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;ee&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.75pt;"&gt;
&lt;TD width="64" height="21" align="right" class="xl66" style="height: 15.75pt; border-top: none; width: 48pt;"&gt;1&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;2&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;3&lt;/TD&gt;
&lt;TD width="64" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64" align="right" class="xl66" style="border-top: none; border-left: none; width: 48pt;"&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 03:31:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Import-CSV-with-html-input/m-p/489482#M2650</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-24T03:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Import CSV with html input</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Import-CSV-with-html-input/m-p/489483#M2651</link>
      <description>&lt;P&gt;Having said that, HTML files should be treated as a stream. EOL means nothing for these files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tags are the&amp;nbsp;main delimiter, then more parsing.&lt;/P&gt;
&lt;P&gt;How does CSV importation logic make sense for HTML files?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 03:37:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Import-CSV-with-html-input/m-p/489483#M2651</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-24T03:37:23Z</dc:date>
    </item>
  </channel>
</rss>

