<?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: Delete observations that CONTAIN in a variable a certain word in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/277396#M259786</link>
    <description>Hi data_null__,&lt;BR /&gt;I post the question named as "Delete obsvations with certain strings".&lt;BR /&gt;Thanks a lot!&lt;BR /&gt;</description>
    <pubDate>Tue, 14 Jun 2016 21:50:37 GMT</pubDate>
    <dc:creator>Xiaoningdemao</dc:creator>
    <dc:date>2016-06-14T21:50:37Z</dc:date>
    <item>
      <title>Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121362#M259771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following works great:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data nicholas._21603_;&lt;/P&gt;&lt;P&gt;modify nicholas._21603_;&lt;/P&gt;&lt;P&gt;if Combo="23601" then remove;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what I want to now do is change the "=" sign to "contains":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Combo contains "23601" then remove;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR 388-185: Expecting an arithmetic operator.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great luck, huh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So..., what gives?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2013 09:36:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121362#M259771</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-01-10T09:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121363#M259772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Contains is available only in Proc SQL and is there for compatibility.&amp;nbsp; There are other functions such as variants of the Index function that can be used in a data step to achieve the same result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2013 09:40:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121363#M259772</guid>
      <dc:creator>RichardinOz</dc:creator>
      <dc:date>2013-01-10T09:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121364#M259773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;The Contains operator is not limited to Proc Sql. It can be used in the data step, but only in a Where statement.&lt;/P&gt;&lt;P&gt;I suggest the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data nicholas._21603_;&lt;/P&gt;&lt;P&gt;modify nicholas._21603_;&lt;/P&gt;&lt;P&gt;if find(Combo,"23601") then remove;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2013 10:02:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121364#M259773</guid>
      <dc:creator>Fraktalnisse</dc:creator>
      <dc:date>2013-01-10T10:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121365#M259774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data nicholas._21603_;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;modify nicholas._21603_;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;/* here are two variants */&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;/* first - if your task is only to search for a numbers */&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;if index(Combo,"23601") &amp;gt; 0 then remove;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;/* if you need to pay attention to a character case, e.g. "asdASD" */&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;/* consider using find function */&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;/* if find(Combo, "asdASD", "i", 0) &amp;gt; 0 then remove; */&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2013 10:04:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121365#M259774</guid>
      <dc:creator>ghastly_kitten</dc:creator>
      <dc:date>2013-01-10T10:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121366#M259775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Find&lt;/STRONG&gt; function is a bit slower than &lt;STRONG&gt;index&lt;/STRONG&gt; at least in some SAS versions.&lt;/P&gt;&lt;P&gt;I'm not sure about 9.3, but checking for modifiers and startposition spends some time, especially on huge datasets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, better check out the help for additional info, who knows what you will need it for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2013 10:07:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121366#M259775</guid>
      <dc:creator>ghastly_kitten</dc:creator>
      <dc:date>2013-01-10T10:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121367#M259776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sweet!!&amp;nbsp; Thanks a million.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data nicholas._21603_;&lt;/P&gt;&lt;P&gt;modify nicholas._21603_;&lt;/P&gt;&lt;P&gt;if find(Combo,"23601") then remove;&lt;/P&gt;&lt;P&gt;if find(Combo,"23602") then remove;&lt;/P&gt;&lt;P&gt;if find(Combo,"23603") then remove;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: There were 78939 observations read from the data set NICHOLAS._21603_.&lt;/P&gt;&lt;P&gt;NOTE: The data set NICHOLAS._21603_ has been updated.&amp;nbsp; There were 0 observations rewritten, 0 observations added and &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;5733 observations deleted&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2013 22:36:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121367#M259776</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2013-01-10T22:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121368#M259777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about using the WHERE statment with CONTAINS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; class;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; sashelp.class;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; class;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;modify&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; class;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; name contains &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;'il'&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;remove&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2013 23:02:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121368#M259777</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-01-10T23:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121369#M259778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DN,&lt;/P&gt;&lt;P&gt;What is the difference between &lt;SPAN style="color: #ff0000;"&gt;delete&lt;/SPAN&gt; and &lt;SPAN style="color: #ff0000;"&gt;remove&lt;/SPAN&gt;?&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, 11 Jan 2013 13:59:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121369#M259778</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-01-11T13:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121370#M259779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DELETE is RETURN without implied OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REMOVE is for deleting records with MODIFY statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE and RETURN are the same in a data step with explicit OUTPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2013 14:12:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121370#M259779</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-01-11T14:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121371#M259780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you DN!&lt;/P&gt;&lt;P&gt;I think you meant&lt;/P&gt;&lt;P&gt;DELETE and &lt;SPAN style="color: #ff0000;"&gt;REMOVE&lt;/SPAN&gt; are the same in a data step with explicit OUTPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2013 14:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121371#M259780</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-01-11T14:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121372#M259781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2013 14:44:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121372#M259781</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-01-11T14:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121373#M259782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you! I have never used REMOVE. I need to read more about it. - Linlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2013 14:50:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121373#M259782</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-01-11T14:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121374#M259783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Until you have used MODIFY you don't need REMOVE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2013 14:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/121374#M259783</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-01-11T14:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/277361#M259784</link>
      <description>Hi data_null_,&lt;BR /&gt;I have a similar problem, but I want to remove observations with sting 'aaa' and 'bbb' at thre same time, how to do that? Can I write two where at the same time?&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Jun 2016 19:52:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/277361#M259784</guid>
      <dc:creator>Xiaoningdemao</dc:creator>
      <dc:date>2016-06-14T19:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/277365#M259785</link>
      <description>&lt;P&gt;Start a new thread and give example data.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2016 20:01:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/277365#M259785</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2016-06-14T20:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/277396#M259786</link>
      <description>Hi data_null__,&lt;BR /&gt;I post the question named as "Delete obsvations with certain strings".&lt;BR /&gt;Thanks a lot!&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Jun 2016 21:50:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/277396#M259786</guid>
      <dc:creator>Xiaoningdemao</dc:creator>
      <dc:date>2016-06-14T21:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Delete observations that CONTAIN in a variable a certain word</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/394712#M259787</link>
      <description>&lt;P&gt;Thanks. This solution worked for me.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 15:15:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-observations-that-CONTAIN-in-a-variable-a-certain-word/m-p/394712#M259787</guid>
      <dc:creator>mgarrison</dc:creator>
      <dc:date>2017-09-11T15:15:34Z</dc:date>
    </item>
  </channel>
</rss>

