<?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 Delete line with a similar word in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Delete-line-with-a-similar-word/m-p/413381#M101159</link>
    <description>&lt;P&gt;I have a column with multiple lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many&amp;nbsp;contents are similar with the word "export" present in the column "Reason", example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;at line 1 there is = Export to Canada&lt;/P&gt;&lt;P&gt;at line 2 t&lt;SPAN&gt;here is&amp;nbsp;&lt;/SPAN&gt;= export Mexico&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;at line 3&amp;nbsp;there is&amp;nbsp; =&amp;nbsp;&lt;/SPAN&gt;export Japan&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;at line 3&amp;nbsp;there is&amp;nbsp; =&amp;nbsp;&lt;/SPAN&gt;export&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many other lines don't&amp;nbsp;have the export.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a single way to make SAS delete the lines&amp;nbsp;where the word "export" is present in the column&lt;SPAN&gt;"Reason"&lt;/SPAN&gt;?&lt;/P&gt;</description>
    <pubDate>Tue, 14 Nov 2017 15:44:03 GMT</pubDate>
    <dc:creator>Giovani</dc:creator>
    <dc:date>2017-11-14T15:44:03Z</dc:date>
    <item>
      <title>Delete line with a similar word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-line-with-a-similar-word/m-p/413381#M101159</link>
      <description>&lt;P&gt;I have a column with multiple lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many&amp;nbsp;contents are similar with the word "export" present in the column "Reason", example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;at line 1 there is = Export to Canada&lt;/P&gt;&lt;P&gt;at line 2 t&lt;SPAN&gt;here is&amp;nbsp;&lt;/SPAN&gt;= export Mexico&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;at line 3&amp;nbsp;there is&amp;nbsp; =&amp;nbsp;&lt;/SPAN&gt;export Japan&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;at line 3&amp;nbsp;there is&amp;nbsp; =&amp;nbsp;&lt;/SPAN&gt;export&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many other lines don't&amp;nbsp;have the export.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a single way to make SAS delete the lines&amp;nbsp;where the word "export" is present in the column&lt;SPAN&gt;"Reason"&lt;/SPAN&gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2017 15:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-line-with-a-similar-word/m-p/413381#M101159</guid>
      <dc:creator>Giovani</dc:creator>
      <dc:date>2017-11-14T15:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Delete line with a similar word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-line-with-a-similar-word/m-p/413386#M101161</link>
      <description>&lt;P&gt;You can do it with a simple Proc SQL command - here's an example using a copy of a SASHELP file which you can adapt for your purposes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data cars;
	set sashelp.cars;
run;

proc sql;
	delete from cars where upcase(model) contains "CONVERTIBLE";
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Nov 2017 15:51:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-line-with-a-similar-word/m-p/413386#M101161</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2017-11-14T15:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Delete line with a similar word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-line-with-a-similar-word/m-p/413390#M101163</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;YOU ARE FANTASTIC!!!!!!!!!!!&lt;/P&gt;&lt;P&gt;THAT WORKED VERY WELL!!!!!!!!!&lt;/P&gt;&lt;P&gt;THANKS, A LOT!!!!!!!!!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2017 16:01:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-line-with-a-similar-word/m-p/413390#M101163</guid>
      <dc:creator>Giovani</dc:creator>
      <dc:date>2017-11-14T16:01:44Z</dc:date>
    </item>
  </channel>
</rss>

