<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/sas/tags/multiple</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 12:34:08 GMT</pubDate>
<item>
<title>(SAS) PRXMATCH Function - sarathannapareddy</title>
<link>http://snipplr.com/view/33203/prxmatch-function/</link>
<description><![CDATA[ <p>Prxmatch () function is very useful in locating the matching strings. Prxmatch() function has 2 parameters, the first parameter is the regular expression ID (i.e what you are looking in a string for a match) and the second parameter is the character string to be searched. PRXMATCH () function returns the start position of the matching string.</p> ]]></description>
<pubDate>Mon, 26 Apr 2010 19:52:30 GMT</pubDate>
<guid>http://snipplr.com/view/33203/prxmatch-function/</guid>
</item>
<item>
<title>(SAS) CALL EXECUTE: Easy way to print or sort multiple files. - sarathannapareddy</title>
<link>http://snipplr.com/view/33199/call-execute-easy-way-to-print-or-sort-multiple-files/</link>
<description><![CDATA[ <p>When printing multiple files, or sorting multiple datasets, the traditional method is to write multiple steps as below.

Proc print data=libref.ae; var _all_; run;
Proc print data=libref.conmed; var _all_; run;
Proc print data=libref.demog; var _all_; run;
Proc print data=libref.lab; var _all_; run;
Proc print data=libref.medhist; var _all_; run; 
If you are like me who likes to simplify the traditional SAS code here is the tip. CALL EXECUTE comes to rescue here.</p> ]]></description>
<pubDate>Mon, 26 Apr 2010 19:42:48 GMT</pubDate>
<guid>http://snipplr.com/view/33199/call-execute-easy-way-to-print-or-sort-multiple-files/</guid>
</item>
</channel>
</rss>