<?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: find text in lengthy string in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182864#M46553</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And, of course, if you prefer prx expressions like &lt;A __default_attr="5068" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; suggested you could also use them in proc sql:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select pid, compress(_inform) as inform&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from medi_history (rename=(inform=_inform))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; having prxmatch('/\bbypoll\b/i', _inform) and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; not prxmatch('/\bpoll\b/i', _inform)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 23 Nov 2014 21:31:46 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2014-11-23T21:31:46Z</dc:date>
    <item>
      <title>find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182859#M46548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone!&lt;/P&gt;&lt;P&gt;In my below example, I would like to search the ID where the clob variable "Inform" contain only the text as "bypoll".&amp;nbsp; &lt;/P&gt;&lt;P&gt;If the Id contain strings as both "bypoll" and "poll" , then those id should be excluded.&lt;/P&gt;&lt;P&gt;I am not getting the output. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data medi_history;&lt;/P&gt;&lt;P&gt;input pid inform : &amp;amp; $200.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;201 Tunisians went to the bypoll on Sunday to pick their first directly elected president&lt;/P&gt;&lt;P&gt;202 Apple unlike itself revealed the pricing details of iPad Ai 2 and iPad Mini 3 in bypoll and poll election&lt;/P&gt;&lt;P&gt;203 Lewis Hamilton clinched his second bypolldrivers world championship in poll section.&lt;/P&gt;&lt;P&gt;204 Defending leopards in human populated areas as not necessarily or bypoll&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table a1 as&lt;/P&gt;&lt;P&gt;select pid, compress(inform) as inform&lt;/P&gt;&lt;P&gt;from medi_history;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table a2 as&lt;/P&gt;&lt;P&gt;select * from a1&lt;/P&gt;&lt;P&gt;where inform like '%bypoll%'&lt;/P&gt;&lt;P&gt;and inform not like '%poll%'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advance thanks for&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 18:58:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182859#M46548</guid>
      <dc:creator>Abraham</dc:creator>
      <dc:date>2014-11-23T18:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182860#M46549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which of those lines do you want output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 19:08:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182860#M46549</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-11-23T19:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182861#M46550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Arthur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the output as below. &lt;/P&gt;&lt;P&gt;201 Tunisians went to the &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;bypoll&lt;/STRONG&gt;&lt;/SPAN&gt; on Sunday to pick their first directly elected president&lt;/P&gt;&lt;P&gt;204 Defending leopards in human populated areas as not necessarily or &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;bypoll&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The remaining two Id contain strings as bypoll and poll. So i don't want those output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 19:18:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182861#M46550</guid>
      <dc:creator>Abraham</dc:creator>
      <dc:date>2014-11-23T19:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182862#M46551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't test this at the moment, but wouldn't the following do what you want?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select pid, compress(inform) as inform&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from medi_history&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; having findw(inform,'bypoll') gt 0 and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; findw(inform,'poll') le 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 19:28:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182862#M46551</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-11-23T19:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182863#M46552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A data step approach ( can also use index/find function family):&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; medi_history;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; pid inform : &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: teal; background: white;"&gt;$200.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;cards&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;201 Tunisians went to the bypoll on Sunday to pick their first directly elected president&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;202 Apple unlike itself revealed the pricing details of iPad Ai 2 and iPad Mini 3 in bypoll and poll election&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;203 Lewis Hamilton clinched his second bypolldrivers world championship in poll section.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;204 Defending leopards in human populated areas as not necessarily or bypoll&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; want;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; medi_history;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; prxmatch(&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple; background: white;"&gt;'/\bbypoll\b/i'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;, inform) &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;then&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; if &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;not&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt; prxmatch(&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple; background: white;"&gt;'/\bpoll\b/i'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;, inform) &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;then&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; color: blue; background: white;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 20:16:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182863#M46552</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-11-23T20:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182864#M46553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And, of course, if you prefer prx expressions like &lt;A __default_attr="5068" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; suggested you could also use them in proc sql:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select pid, compress(_inform) as inform&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from medi_history (rename=(inform=_inform))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; having prxmatch('/\bbypoll\b/i', _inform) and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; not prxmatch('/\bpoll\b/i', _inform)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 21:31:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182864#M46553</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-11-23T21:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182865#M46554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;I am puzzled by your decision of using 'having'&amp;nbsp; instead of 'where'. It seems to me that the former is most likely to be seen when there is a summary call.&lt;/P&gt;&lt;P&gt;BTW, do you have a 'Turkey Day' in Canada?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 21:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182865#M46554</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-11-23T21:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182866#M46555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="5068" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: You should be puzzled. I've never really given it much thought since they function the same (mostly) in this situation. However, since where would process before the table is read, the rename option wouldn't be necessary.&amp;nbsp; In short, "better" code would have been:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select pid, compress(inform) as inform&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from medi_history&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where prxmatch('/\bbypoll\b/i', inform) and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; not prxmatch('/\bpoll\b/i', inform)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 22:02:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182866#M46555</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-11-23T22:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182867#M46556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because your logic is incorrect.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;inform not like '%poll%'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;will NOT match any line that has bypoll in it since poll is just a subset of bypoll.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Nov 2014 23:06:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182867#M46556</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-11-23T23:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182868#M46557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="5068" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: Forgot to answer your other question. Canadian turkey day was last month! However, my family and I celebrate both Thanksgiving Days.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 00:42:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182868#M46557</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-11-24T00:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: find text in lengthy string</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182869#M46558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;:smileylaugh: Nice, Art! In my book, heaven is where we celebrate every holiday on this planet, and you are 1 step closer! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Nov 2014 01:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/find-text-in-lengthy-string/m-p/182869#M46558</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-11-24T01:20:58Z</dc:date>
    </item>
  </channel>
</rss>

