<?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 to include ';' in datalines in SAS data step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-include-in-datalines-in-SAS-data-step/m-p/621593#M182739</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a below requirement. Could anyone help me!!. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data temp;&lt;BR /&gt;input name$ details $ dlm='|';&lt;BR /&gt;datalines;&lt;BR /&gt;name1|sex1;dob1&lt;BR /&gt;name2|sex2;dob2&lt;BR /&gt;name3|sex3;dob3&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;so,on&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Sat, 01 Feb 2020 03:35:07 GMT</pubDate>
    <dc:creator>subhani4</dc:creator>
    <dc:date>2020-02-01T03:35:07Z</dc:date>
    <item>
      <title>How to include ';' in datalines in SAS data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-include-in-datalines-in-SAS-data-step/m-p/621593#M182739</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a below requirement. Could anyone help me!!. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data temp;&lt;BR /&gt;input name$ details $ dlm='|';&lt;BR /&gt;datalines;&lt;BR /&gt;name1|sex1;dob1&lt;BR /&gt;name2|sex2;dob2&lt;BR /&gt;name3|sex3;dob3&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;so,on&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2020 03:35:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-include-in-datalines-in-SAS-data-step/m-p/621593#M182739</guid>
      <dc:creator>subhani4</dc:creator>
      <dc:date>2020-02-01T03:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to include ';' in datalines in SAS data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-include-in-datalines-in-SAS-data-step/m-p/621596#M182740</link>
      <description>&lt;P&gt;Use DATALINES4 (aka CARDS4) statement instead. That requires a line with four semicolons to signal the end of the data.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
input name$ details $ dlm='|';
datalines4;
name1|sex1;dob1
name2|sex2;dob2
name3|sex3;dob3
.
.
.
so,on
;;;;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 01 Feb 2020 05:28:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-include-in-datalines-in-SAS-data-step/m-p/621596#M182740</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-02-01T05:28:58Z</dc:date>
    </item>
  </channel>
</rss>

