<?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 filter for single non joined words like &amp;quot;PAY&amp;quot; but not joined words containing PAY such as &amp;quot;PAYPAL&amp;quot;, &amp;quot;BPAY&amp;quot; &amp;quot;PAYED&amp;quot; in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-filter-for-single-non-joined-words-like-quot-PAY-quot-but/m-p/154590#M12086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to filter out records with the word "PAY" in the description but I want to filter out words containing PAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for example if the description says&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOHN SMITH WEEKLY PAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I wish to include this record as the word PAY is by itself. However if the Description is in the form of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAYPAL , BPAY, PAYED&lt;/P&gt;&lt;P&gt;or any characters or words that start, has pay in the middle or ends with pay, then I wish to exclude the record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anyway to be able to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2014 00:51:24 GMT</pubDate>
    <dc:creator>zhang_l</dc:creator>
    <dc:date>2014-06-25T00:51:24Z</dc:date>
    <item>
      <title>How to filter for single non joined words like "PAY" but not joined words containing PAY such as "PAYPAL", "BPAY" "PAYED"</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-filter-for-single-non-joined-words-like-quot-PAY-quot-but/m-p/154590#M12086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to filter out records with the word "PAY" in the description but I want to filter out words containing PAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for example if the description says&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOHN SMITH WEEKLY PAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I wish to include this record as the word PAY is by itself. However if the Description is in the form of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAYPAL , BPAY, PAYED&lt;/P&gt;&lt;P&gt;or any characters or words that start, has pay in the middle or ends with pay, then I wish to exclude the record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anyway to be able to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 00:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-filter-for-single-non-joined-words-like-quot-PAY-quot-but/m-p/154590#M12086</guid>
      <dc:creator>zhang_l</dc:creator>
      <dc:date>2014-06-25T00:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter for single non joined words like "PAY" but not joined words containing PAY such as "PAYPAL", "BPAY" "PAYED"</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-filter-for-single-non-joined-words-like-quot-PAY-quot-but/m-p/154591#M12087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;if findw(name,'PAY')&amp;gt;0 then output;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 01:19:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-filter-for-single-non-joined-words-like-quot-PAY-quot-but/m-p/154591#M12087</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-06-25T01:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter for single non joined words like "PAY" but not joined words containing PAY such as "PAYPAL", "BPAY" "PAYED"</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-filter-for-single-non-joined-words-like-quot-PAY-quot-but/m-p/154592#M12088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OR perl regular expression :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if prxmatch('/\bPAY\b /',name) ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:04:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-filter-for-single-non-joined-words-like-quot-PAY-quot-but/m-p/154592#M12088</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-06-25T13:04:28Z</dc:date>
    </item>
  </channel>
</rss>

