<?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: How do you use regular expressions with PROC FEDSQL? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-use-regular-expressions-with-PROC-FEDSQL/m-p/471029#M120606</link>
    <description>&lt;P&gt;It seems you can use functions from DS2 packages in FEDSQL. So something like this may be a workaround:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*  DS2 code */
proc ds2;
   package prxfunc;
      method match(char prx, char source) returns integer;
         return prxmatch(prx,source);
      end;
   endpackage;
 run;
quit;

/* fedsql code */
proc fedsql;
   select * from mytable
      where prxfunc.match('/Joe/',firstname);
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 18 Jun 2018 10:57:43 GMT</pubDate>
    <dc:creator>s_lassen</dc:creator>
    <dc:date>2018-06-18T10:57:43Z</dc:date>
    <item>
      <title>How do you use regular expressions with PROC FEDSQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-use-regular-expressions-with-PROC-FEDSQL/m-p/470687#M120457</link>
      <description>&lt;P&gt;The SAS function PRXMATCH does&amp;nbsp; not work.&amp;nbsp; How can I get regular expression functionality with PROC FEDSQL?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jun 2018 19:40:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-you-use-regular-expressions-with-PROC-FEDSQL/m-p/470687#M120457</guid>
      <dc:creator>tomcmacdonald</dc:creator>
      <dc:date>2018-06-15T19:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do you use regular expressions with PROC FEDSQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-you-use-regular-expressions-with-PROC-FEDSQL/m-p/471029#M120606</link>
      <description>&lt;P&gt;It seems you can use functions from DS2 packages in FEDSQL. So something like this may be a workaround:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*  DS2 code */
proc ds2;
   package prxfunc;
      method match(char prx, char source) returns integer;
         return prxmatch(prx,source);
      end;
   endpackage;
 run;
quit;

/* fedsql code */
proc fedsql;
   select * from mytable
      where prxfunc.match('/Joe/',firstname);
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Jun 2018 10:57:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-you-use-regular-expressions-with-PROC-FEDSQL/m-p/471029#M120606</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2018-06-18T10:57:43Z</dc:date>
    </item>
  </channel>
</rss>

