<?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: Sysfunc and transwrd in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73075#M21203</link>
    <description>For an alternative method of not returning excessive blanks etc see my macro posted above - yes it uses insignificantly more resources but is significantly easier for humans to read and understand and maintain and explain - a significant goal in development.</description>
    <pubDate>Mon, 20 Sep 2010 19:47:43 GMT</pubDate>
    <dc:creator>WaltSmith</dc:creator>
    <dc:date>2010-09-20T19:47:43Z</dc:date>
    <item>
      <title>Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73062#M21190</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I have a string of variables stored in macro variable &amp;amp;Ind_variable. &lt;BR /&gt;
&lt;BR /&gt;
say &lt;BR /&gt;
&lt;BR /&gt;
%let Ind_variable = x1 x2 x3;&lt;BR /&gt;
&lt;BR /&gt;
I want to get new string of&lt;BR /&gt;
&lt;BR /&gt;
x1, (n, mean, var)  x2, (n, mean, var)  x3, (n, mean, var)&lt;BR /&gt;
&lt;BR /&gt;
to a new macro variable&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I tried running this code but it does not work. &lt;BR /&gt;
&lt;BR /&gt;
%let ind = %sysfunc(tranwrd(&amp;amp;ind_var, ' ', %str(', (n,mean,var)')));&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Would be great if you could suggest something that would work here.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
L</description>
      <pubDate>Fri, 17 Sep 2010 14:53:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73062#M21190</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-09-17T14:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73063#M21191</link>
      <description>For what you're doing there are no tick-marks, just using %STR(&lt;YOUR_STRING&gt;).  I suggest you change the logic to parse each variable and perform the TRANWRD on each sub-field - can be done in a macro logic form....&lt;BR /&gt;
&lt;BR /&gt;
However,  it may be easier to code, when performing in a DATA step instead - less %SYSFUNC activity.  Then when complete, use CALL SYMPUT to stow the macro variable.  &lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;/YOUR_STRING&gt;</description>
      <pubDate>Fri, 17 Sep 2010 15:03:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73063#M21191</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-09-17T15:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73064#M21192</link>
      <description>It you don't have many, an one-liner will do. Or you can loop over with another quick macro. hth.&lt;BR /&gt;
[pre]&lt;BR /&gt;
%macro nmv(x);&amp;amp;x, (n, mean, var)%mend nmv;&lt;BR /&gt;
&lt;BR /&gt;
%macro foreach(in=, do=, indlm=%str( ), outdlm=%str( ));&lt;BR /&gt;
  %local i item;&lt;BR /&gt;
  %let i = 1;&lt;BR /&gt;
  %let item = %scan(&amp;amp;in, &amp;amp;i, &amp;amp;indlm);&lt;BR /&gt;
  %do %while (&amp;amp;item ^=);&lt;BR /&gt;
    %*;%unquote(&amp;amp;do)&lt;BR /&gt;
    %let i = %eval(&amp;amp;i + 1);&lt;BR /&gt;
    %let item = %scan(&amp;amp;in, &amp;amp;i, &amp;amp;indlm);&lt;BR /&gt;
    %if &amp;amp;item ^= %then %*;&amp;amp;outdlm;&lt;BR /&gt;
  %end;&lt;BR /&gt;
%mend  foreach;&lt;BR /&gt;
&lt;BR /&gt;
%put ***%nmv(x1) %nmv(x2)***;&lt;BR /&gt;
%put ***%foreach(in=a b c, do=%nrstr(%nmv(&amp;amp;item)))***;&lt;BR /&gt;
%*-- on log&lt;BR /&gt;
***x1, (n, mean, var) x2, (n, mean, var)***&lt;BR /&gt;
***a, (n, mean, var) b, (n, mean, var) c, (n, mean, var)***&lt;BR /&gt;
--*;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 17 Sep 2010 16:00:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73064#M21192</guid>
      <dc:creator>chang_y_chung_hotmail_com</dc:creator>
      <dc:date>2010-09-17T16:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73065#M21193</link>
      <description>Hi:&lt;BR /&gt;
  There's always more than one way to accomplish a task like this. In addition to the 2 excellent suggestions already posted, another method (without using %SYSFUNC or using a macro program would use something like this:&lt;BR /&gt;
[pre]&lt;BR /&gt;
%let Ind_variable = x1 x2 x3;&lt;BR /&gt;
                                &lt;BR /&gt;
** could put this in a %DO loop inside a macro program;&lt;BR /&gt;
%let newx1 = %scan(&amp;amp;ind_variable,1),%str(%(n, mean, var%));&lt;BR /&gt;
%put &amp;amp;newx1;&lt;BR /&gt;
            &lt;BR /&gt;
%let newx2 = %scan(&amp;amp;ind_variable,2),%str(%(n, mean, var%));&lt;BR /&gt;
%put &amp;amp;newx2;&lt;BR /&gt;
                 &lt;BR /&gt;
%let newx3 = %scan(&amp;amp;ind_variable,3),%str(%(n, mean, var%));&lt;BR /&gt;
%put &amp;amp;newx3;&lt;BR /&gt;
                     &lt;BR /&gt;
%let Ind_variable = &amp;amp;newx1 &amp;amp;newx2 &amp;amp;newx3;&lt;BR /&gt;
%put &amp;amp;ind_variable;&lt;BR /&gt;
** end of transform for 3 variables;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
  &lt;BR /&gt;
If you had an undetermined number of Xn variables in &amp;amp;IND_VARIABLE, then you could put a %DO loop in a macro program. The approach you use really depends on the rest of the code you're trying to generate.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 17 Sep 2010 16:44:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73065#M21193</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-09-17T16:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73066#M21194</link>
      <description>%macro trans(v=);&lt;BR /&gt;
 &lt;BR /&gt;
%let y=;&lt;BR /&gt;
%let i=1;&lt;BR /&gt;
%do %while(%scan(&amp;amp;v,&amp;amp;i) ne);&lt;BR /&gt;
%let y=&amp;amp;y %scan(&amp;amp;v,&amp;amp;i),(n, mean, var);&lt;BR /&gt;
%let i=%eval(&amp;amp;i+1);&lt;BR /&gt;
%end;&lt;BR /&gt;
&lt;BR /&gt;
%put &amp;amp;y;&lt;BR /&gt;
%put &amp;amp;v;&lt;BR /&gt;
%mend;&lt;BR /&gt;
&lt;BR /&gt;
%trans(v=x1 x2 x3);</description>
      <pubDate>Fri, 17 Sep 2010 16:52:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73066#M21194</guid>
      <dc:creator>SUN59338</dc:creator>
      <dc:date>2010-09-17T16:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73067#M21195</link>
      <description>Here's a macro I use for such things:&lt;BR /&gt;
&lt;BR /&gt;
/*******************************************************************************&lt;BR /&gt;
*  Name:   lisuffix  (List Item Suffix)                                        *&lt;BR /&gt;
*  Desc:   Returns a list with the specified suffix appended to each item.     *&lt;BR /&gt;
*  Type:   Macro Function - List                                               *&lt;BR /&gt;
*  Usage:  %lisuffix ( list , suffix )                                         *&lt;BR /&gt;
*  Where:  list is a space delimited list                                      *&lt;BR /&gt;
*          suffix is any string of characters                                  *&lt;BR /&gt;
*  Examples:                                                                   *&lt;BR /&gt;
*    1)  %let fylist=1996 1997 1998;                                           *&lt;BR /&gt;
*        %let newlist=%lisuffix(&amp;amp;fylist,%str(,));                              *&lt;BR /&gt;
*        %put ===&amp;gt; newlist=&amp;amp;newlist;                                           *&lt;BR /&gt;
*        ===&amp;gt; newlist=1996,1997,1998,                                          *&lt;BR /&gt;
*    2)  %let datelist=01JAN1999 01FEB1999 01MAR1999;                          *&lt;BR /&gt;
*        %let newlist=%liprefix(&amp;amp;datelist,%bquote('));                         *&lt;BR /&gt;
*        %let newlist=%lisuffix(%bquote(&amp;amp;newlist),%bquote('d));                *&lt;BR /&gt;
*        %put ===&amp;gt; newlist=&amp;amp;newlist;                                           *&lt;BR /&gt;
*        ===&amp;gt; '01JAN1999'd '01FEB1999'd '01MAR1999'd                           *&lt;BR /&gt;
*  History:                                                                    *&lt;BR /&gt;
*   3/15/00   Walt Smith - development                                         *&lt;BR /&gt;
*******************************************************************************/&lt;BR /&gt;
%macro lisuffix (_list,_suff) /&lt;BR /&gt;
   des = 'Fn: Suffix each item in list with string'&lt;BR /&gt;
   ;&lt;BR /&gt;
   %local return i signal wrd delim;&lt;BR /&gt;
   %let delim=%str( );&lt;BR /&gt;
   %let i=0;&lt;BR /&gt;
   %let signal=CONTINUE;&lt;BR /&gt;
   %do %until(&amp;amp;signal=DONE);&lt;BR /&gt;
      %let i=%eval(&amp;amp;i +1);&lt;BR /&gt;
      %let wrd=%qscan(&amp;amp;_list,&amp;amp;i,%str(&amp;amp;delim));&lt;BR /&gt;
      %if %length(&amp;amp;wrd)=0 %then&lt;BR /&gt;
         %let signal=DONE;&lt;BR /&gt;
      %else&lt;BR /&gt;
         %let return = &amp;amp;return.%str(&amp;amp;wrd)%str(&amp;amp;_suff)%str(&amp;amp;delim);&lt;BR /&gt;
   %end;&lt;BR /&gt;
%unquote(&amp;amp;return)&lt;BR /&gt;
%mend;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
You need to be aware of macro quoting - if what you want to append to each item in your original list contains anything that is meaningful in calling a macro (like = signs, commas, etc) then just quote the whole thing. In your case, as I read your question you want to add ', (n, mean, var)' to each of x1 x2 x3:&lt;BR /&gt;
&lt;BR /&gt;
%let ind_variable = x1 x2 x3;&lt;BR /&gt;
%let newstr = %lisuffix( &amp;amp;ind_variable,  %bquote(, (n, mean, var)) );&lt;BR /&gt;
%put newstr = "&amp;amp;newstr";&lt;BR /&gt;
&lt;BR /&gt;
result:&lt;BR /&gt;
newstr = "x1, (n, mean, var) x2, (n, mean, var) x3, (n, mean, var)"&lt;BR /&gt;
&lt;BR /&gt;
ouch! I just previewed this post and they filter out all whitespace so the macro looks pretty ugly - sorry ...</description>
      <pubDate>Fri, 17 Sep 2010 23:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73067#M21195</guid>
      <dc:creator>WaltSmith</dc:creator>
      <dc:date>2010-09-17T23:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73068#M21196</link>
      <description>Hi:&lt;BR /&gt;
  This previous forum posting discusses how to preserve indenting and how to use characters like &amp;lt; and &amp;gt; in your code:&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=27609毙" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=27609毙&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Basically, you use the [pre] and [/pre] tags around your code and output in order to maintain indenting and spacing. (This means that folks who want to cut and paste your code will have to cut and paste from the forum window into Microsoft Word or some other editor that respects carriage control/line feed and then cut and paste from -that- editor into the SAS window.)&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Sat, 18 Sep 2010 02:03:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73068#M21196</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-09-18T02:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73069#M21197</link>
      <description>Thank you all for the excellent comments. I finally figured it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Sun, 19 Sep 2010 08:09:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73069#M21197</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-09-19T08:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73070#M21198</link>
      <description>First of all, I am also confused.&lt;BR /&gt;
But I think '&amp;amp;ind_var' is a macro variable,So must use macro itself type to translate;&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
options symbolgen mprint mlogic;&lt;BR /&gt;
%let ind_var =%str(x1 x2 x3 );&lt;BR /&gt;
%let ind = %sysfunc(tranwrd(&amp;amp;ind_var.,%str( ),%str(,(n,mean,var) ) ));&lt;BR /&gt;
%put &amp;amp;ind.;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp&lt;BR /&gt;
&lt;BR /&gt;
Message was edited by: Ksharp</description>
      <pubDate>Mon, 20 Sep 2010 03:02:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73070#M21198</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-09-20T03:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73071#M21199</link>
      <description>Chang,&lt;BR /&gt;
&lt;BR /&gt;
What does %*; do?  The sequence appears twice in your solution.  I can't remember seeing this before, so I'm just curious.&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Mon, 20 Sep 2010 17:08:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73071#M21199</guid>
      <dc:creator>polingjw</dc:creator>
      <dc:date>2010-09-20T17:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73072#M21200</link>
      <description>Sorry for my ignorance - and for any interested, here's the macro:&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
/*******************************************************************************&lt;BR /&gt;
*  Name:   lisuffix  (List Item Suffix)                                        *&lt;BR /&gt;
*  Desc:   Returns a list with the specified suffix appended to each item.     *&lt;BR /&gt;
*  Type:   Macro Function - List                                               *&lt;BR /&gt;
*  Usage:  %lisuffix ( list , suffix )                                         *&lt;BR /&gt;
*  Where:  list is a space delimited list                                      *&lt;BR /&gt;
*          suffix is any string of characters                                  *&lt;BR /&gt;
*  Examples:                                                                   *&lt;BR /&gt;
*    1)  %let fylist=1996 1997 1998;                                           *&lt;BR /&gt;
*        %let newlist=%lisuffix(&amp;amp;fylist,%str(,));                              *&lt;BR /&gt;
*        %put ===&amp;gt; newlist=&amp;amp;newlist;                                           *&lt;BR /&gt;
*        ===&amp;gt; newlist=1996,1997,1998,                                          *&lt;BR /&gt;
*    2)  %let datelist=01JAN1999 01FEB1999 01MAR1999;                          *&lt;BR /&gt;
*        %let newlist=%liprefix(&amp;amp;datelist,%bquote('));                         *&lt;BR /&gt;
*        %let newlist=%lisuffix(%bquote(&amp;amp;newlist),%bquote('d));                *&lt;BR /&gt;
*        %put ===&amp;gt; newlist=&amp;amp;newlist;                                           *&lt;BR /&gt;
*        ===&amp;gt; '01JAN1999'd '01FEB1999'd '01MAR1999'd                           *&lt;BR /&gt;
*  History:                                                                    *&lt;BR /&gt;
*   3/15/00   Walt Smith - development                                         *&lt;BR /&gt;
*******************************************************************************/&lt;BR /&gt;
%macro lisuffix (_list,_suff) /&lt;BR /&gt;
   des = 'Fn: Suffix each item in list with string'&lt;BR /&gt;
   ;&lt;BR /&gt;
   %local return i signal wrd delim;&lt;BR /&gt;
   %let delim=%str( );&lt;BR /&gt;
   %let i=0;&lt;BR /&gt;
   %let signal=CONTINUE;&lt;BR /&gt;
   %do %until(&amp;amp;signal=DONE);&lt;BR /&gt;
      %let i=%eval(&amp;amp;i +1);&lt;BR /&gt;
      %let wrd=%qscan(&amp;amp;_list,&amp;amp;i,%str(&amp;amp;delim));&lt;BR /&gt;
      %if %length(&amp;amp;wrd)=0 %then&lt;BR /&gt;
         %let signal=DONE;&lt;BR /&gt;
      %else&lt;BR /&gt;
         %let return = &amp;amp;return.%str(&amp;amp;wrd)%str(&amp;amp;_suff)%str(&amp;amp;delim);&lt;BR /&gt;
   %end;&lt;BR /&gt;
%unquote(&amp;amp;return)&lt;BR /&gt;
%mend;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 20 Sep 2010 17:37:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73072#M21200</guid>
      <dc:creator>WaltSmith</dc:creator>
      <dc:date>2010-09-20T17:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73073#M21201</link>
      <description>@polingjw: [pre]  %*;[/pre] is just a macro comment statement, of course; without any comments, though. I am using it to remove leading blanks. Run my code without it, then you will see. You can do the same thing with some other ways like:&lt;BR /&gt;
[pre]   ...&lt;BR /&gt;
   %do %while (&amp;amp;item ^=)&lt;BR /&gt;
      ;%unquote(&amp;amp;do)&lt;BR /&gt;
      %let i = %eval(&amp;amp;i + 1);&lt;BR /&gt;
   ...[/pre]&lt;BR /&gt;
or&lt;BR /&gt;
[pre]   ...&lt;BR /&gt;
   %do %while (&amp;amp;item ^=);&lt;BR /&gt;
      %do;%unquote(&amp;amp;do)%end;&lt;BR /&gt;
      %let i = %eval(&amp;amp;i + 1);&lt;BR /&gt;
   ...[/pre]&lt;BR /&gt;
but I think the null comment statement is simpler. hth.</description>
      <pubDate>Mon, 20 Sep 2010 18:12:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73073#M21201</guid>
      <dc:creator>chang_y_chung_hotmail_com</dc:creator>
      <dc:date>2010-09-20T18:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73074#M21202</link>
      <description>Ok, now I see.  Without the %*; sequence, the tab which precedes the %unquote is passed to the input stack.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!

Message was edited by: polingjw</description>
      <pubDate>Mon, 20 Sep 2010 19:38:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73074#M21202</guid>
      <dc:creator>polingjw</dc:creator>
      <dc:date>2010-09-20T19:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Sysfunc and transwrd</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73075#M21203</link>
      <description>For an alternative method of not returning excessive blanks etc see my macro posted above - yes it uses insignificantly more resources but is significantly easier for humans to read and understand and maintain and explain - a significant goal in development.</description>
      <pubDate>Mon, 20 Sep 2010 19:47:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Sysfunc-and-transwrd/m-p/73075#M21203</guid>
      <dc:creator>WaltSmith</dc:creator>
      <dc:date>2010-09-20T19:47:43Z</dc:date>
    </item>
  </channel>
</rss>

