<?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: If contain &amp;amp;amp; then do statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640740#M190927</link>
    <description>&lt;PRE class="language-sas"&gt;&lt;CODE&gt;prxchange('s/(.*ABC).*/$1/',1,Registration_code)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The syntax is the following:&lt;/P&gt;
&lt;P&gt;prxchange( 's/&lt;FONT color="#00CCFF"&gt; pattern to find&lt;/FONT&gt; / &lt;FONT color="#00FF00"&gt;replacement pattern&lt;/FONT&gt; /',&amp;nbsp;&lt;FONT color="#993366"&gt;number of times to perform the research&lt;/FONT&gt;, &lt;FONT color="#000080"&gt;variable&lt;/FONT&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your case, the variable is &lt;FONT color="#000080"&gt;Registration_code.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;The prxchange() function will look &lt;FONT color="#993366"&gt;1&lt;/FONT&gt; &lt;FONT color="#993366"&gt;time&lt;/FONT&gt; for the pattern &lt;FONT color="#00CCFF"&gt;(.*ABC).* &lt;FONT color="#000000"&gt;in this variable.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;If it finds it, it will replace it by the pattern &lt;FONT color="#00FF00"&gt;$1&lt;/FONT&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;&lt;U&gt;Pattern&amp;nbsp;&lt;/U&gt;&lt;FONT color="#00CCFF"&gt;&lt;U&gt;(.*ABC).*&lt;/U&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#000000"&gt;= any character (&lt;FONT color="#33CCCC"&gt;.&lt;/FONT&gt;) that appears zero, one or more times (&lt;FONT color="#33CCCC"&gt;*&lt;/FONT&gt;) followed by &lt;FONT color="#33CCCC"&gt;ABC&lt;/FONT&gt;, followed by&amp;nbsp;any character (&lt;FONT color="#33CCCC"&gt;.&lt;/FONT&gt;) that appears zero, one or more times (&lt;FONT color="#33CCCC"&gt;*&lt;/FONT&gt;). So something like xxxxxABCxxxxx&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;&lt;U&gt;Pattern &lt;FONT color="#00FF00"&gt;$1&lt;/FONT&gt;&lt;/U&gt; =it retrieves the first group enclosed in parenthesis in the pattern to find :&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#00FF00"&gt;(&lt;/FONT&gt;.*ABC&lt;FONT color="#00FF00"&gt;)&lt;/FONT&gt;.*&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more information, you can perform some research about Pearl Regular Expressions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;Best,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Apr 2020 14:15:40 GMT</pubDate>
    <dc:creator>ed_sas_member</dc:creator>
    <dc:date>2020-04-17T14:15:40Z</dc:date>
    <item>
      <title>If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640690#M190905</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate your advice on my following query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Registration_Code&lt;/TD&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2219APPI083993&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222ABC90839859&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2219APPI083994&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222ABC90839861&lt;/TD&gt;&lt;TD&gt;HK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2219APPI083995&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222ABC90839863&lt;/TD&gt;&lt;TD&gt;US&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222ABC90839864&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222EFG90839865&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222ABC90839866&lt;/TD&gt;&lt;TD&gt;US&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222ABC90839867&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;222ABC90839868&lt;/TD&gt;&lt;TD&gt;UK&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to search "ABC" in the "Registration_Code" Field and update the correct Country code in the "Country" Field&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Registration_Code;&lt;/P&gt;&lt;P&gt;Modify Registration_Code;&lt;/P&gt;&lt;P&gt;if Registration_code contains "ABC"&amp;nbsp; then do County ='UK' ;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately I'm getting following errors message. Thus, what's the right way to code it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;ERROR 161-185: No matching DO/SELECT statement.&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 11:49:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640690#M190905</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2020-04-17T11:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640696#M190907</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/200077"&gt;@SASnewbie2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the find() function instead of CONTAINS or LIKE, which are not valid in an IF statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Registration_Code;
Modify Registration_Code;
if find(Registration_code,"ABC")&amp;gt;0  then do Country ='UK' ;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 12:04:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640696#M190907</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-04-17T12:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640697#M190908</link>
      <description>&lt;P&gt;You don't need DO in this statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if find(Registration_code,"ABC")&amp;gt;0 then County ='UK' ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Apr 2020 12:03:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640697#M190908</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-04-17T12:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640698#M190909</link>
      <description>&lt;P&gt;the errors relate to line:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if Registration_code contains "ABC"  then &lt;STRONG&gt;do&lt;/STRONG&gt; County ='UK' ; end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;1) you miss ; after do&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if Registration_code contains "ABC"  then &lt;STRONG&gt;do;&lt;/STRONG&gt; County ='UK' ; end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2) in case of one statement you don't need &lt;STRONG&gt;do; - end;&lt;/STRONG&gt; at all&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if Registration_code contains "ABC"  then County ='UK';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;3) the country column label is COUNT&lt;STRONG&gt;R&lt;/STRONG&gt;Y while your code assign value to COUNTY&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;(R is missing ?!)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4) end a data step by RUN;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 12:04:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640698#M190909</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-04-17T12:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640709#M190916</link>
      <description>&lt;P&gt;you can alternative try perl regular expression&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Registration_Code$15.	Country$;
if prxmatch('m/abc/i',Registration_Code) then country='UK';
cards;
2219APPI083993	UK
222ABC90839859	UK
2219APPI083994	UK
222ABC90839861	HK
2219APPI083995	UK
222ABC90839863	US
222ABC90839864	UK
222EFG90839865	UK
222ABC90839866	US
222ABC90839867	UK
222ABC90839868	UK
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 12:35:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640709#M190916</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2020-04-17T12:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640712#M190917</link>
      <description>&lt;P&gt;One function call:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Registration_Code;
set Registration_Code;
country = ifc(find(Registration_code,"ABC"),'UK',country);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Apr 2020 12:51:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640712#M190917</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-04-17T12:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640719#M190920</link>
      <description>If i'd like to remove all the character or number after the "ABC", how should I code it ?&lt;BR /&gt;&lt;BR /&gt;Fist I have to search from the Registration_Code filed that contains "ABC" and remove all the character or number after the "ABC"</description>
      <pubDate>Fri, 17 Apr 2020 13:26:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640719#M190920</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2020-04-17T13:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640722#M190921</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/200077"&gt;@SASnewbie2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a possible approach to achieve this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
Data Registration_Code;
Modify Registration_Code;
if find(Registration_code,"ABC")&amp;gt;0  then do;
	Country ='UK';
	Registration_code = prxchange('s/(.*ABC).*/$1/',1,Registration_code);
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2020-04-17 à 15.30.49.png" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/38374i8D087486C5CB30D5/image-size/small?v=v2&amp;amp;px=200" role="button" title="Capture d’écran 2020-04-17 à 15.30.49.png" alt="Capture d’écran 2020-04-17 à 15.30.49.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 13:31:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640722#M190921</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-04-17T13:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640731#M190923</link>
      <description>&lt;P&gt;Appreciate your advice .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you explain the formula below so that I can apply it on my case&lt;/P&gt;&lt;PRE class="language-sas"&gt;&lt;CODE&gt;prxchange('s/(.*ABC).*/$1/',1&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 13:57:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640731#M190923</guid>
      <dc:creator>SASnewbie2</dc:creator>
      <dc:date>2020-04-17T13:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: If contain &amp;amp; then do statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640740#M190927</link>
      <description>&lt;PRE class="language-sas"&gt;&lt;CODE&gt;prxchange('s/(.*ABC).*/$1/',1,Registration_code)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The syntax is the following:&lt;/P&gt;
&lt;P&gt;prxchange( 's/&lt;FONT color="#00CCFF"&gt; pattern to find&lt;/FONT&gt; / &lt;FONT color="#00FF00"&gt;replacement pattern&lt;/FONT&gt; /',&amp;nbsp;&lt;FONT color="#993366"&gt;number of times to perform the research&lt;/FONT&gt;, &lt;FONT color="#000080"&gt;variable&lt;/FONT&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your case, the variable is &lt;FONT color="#000080"&gt;Registration_code.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;The prxchange() function will look &lt;FONT color="#993366"&gt;1&lt;/FONT&gt; &lt;FONT color="#993366"&gt;time&lt;/FONT&gt; for the pattern &lt;FONT color="#00CCFF"&gt;(.*ABC).* &lt;FONT color="#000000"&gt;in this variable.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;If it finds it, it will replace it by the pattern &lt;FONT color="#00FF00"&gt;$1&lt;/FONT&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;&lt;U&gt;Pattern&amp;nbsp;&lt;/U&gt;&lt;FONT color="#00CCFF"&gt;&lt;U&gt;(.*ABC).*&lt;/U&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#000000"&gt;= any character (&lt;FONT color="#33CCCC"&gt;.&lt;/FONT&gt;) that appears zero, one or more times (&lt;FONT color="#33CCCC"&gt;*&lt;/FONT&gt;) followed by &lt;FONT color="#33CCCC"&gt;ABC&lt;/FONT&gt;, followed by&amp;nbsp;any character (&lt;FONT color="#33CCCC"&gt;.&lt;/FONT&gt;) that appears zero, one or more times (&lt;FONT color="#33CCCC"&gt;*&lt;/FONT&gt;). So something like xxxxxABCxxxxx&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;&lt;U&gt;Pattern &lt;FONT color="#00FF00"&gt;$1&lt;/FONT&gt;&lt;/U&gt; =it retrieves the first group enclosed in parenthesis in the pattern to find :&lt;FONT color="#00CCFF"&gt;&lt;FONT color="#00FF00"&gt;(&lt;/FONT&gt;.*ABC&lt;FONT color="#00FF00"&gt;)&lt;/FONT&gt;.*&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more information, you can perform some research about Pearl Regular Expressions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="caret-color: #000000;"&gt;Best,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 14:15:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/If-contain-amp-amp-then-do-statement/m-p/640740#M190927</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-04-17T14:15:40Z</dc:date>
    </item>
  </channel>
</rss>

