<?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 to scan comma delimited macro variable list? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131968#M26899</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ballardw. But why&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;%scan&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;("&amp;amp;qtnames", 2, ",");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;also works, but I did not use any macro quoting function. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Sep 2013 23:52:45 GMT</pubDate>
    <dc:creator>Macro</dc:creator>
    <dc:date>2013-09-10T23:52:45Z</dc:date>
    <item>
      <title>How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131961#M26892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To scan the second word var2 in macro var qtnames, I used the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let qtnames = var1, var2, var3;&lt;/P&gt;&lt;P&gt;%put %scan(&amp;amp;qtnames, 2, ",");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 12pt; font-family: Courier New;"&gt;The above has the error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Macro function %SCAN has too many arguments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to fix the problem? Why? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 07:55:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131961#M26892</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-09-08T07:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131962#M26893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would advice to get the why-s about macro quoting. &lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/mcrolref/64754/HTML/default/viewer.htm#p07u5itr1teq0dn1bx0lli1ri5dy.htm" title="http://support.sas.com/documentation/cdl/en/mcrolref/64754/HTML/default/viewer.htm#p07u5itr1teq0dn1bx0lli1ri5dy.htm"&gt;SAS(R) 9.4 Macro Language: Reference&lt;/A&gt;&lt;/P&gt;&lt;P&gt;using learning SAS macros for programming is alo requiring to understand how something works. In this case the macro parser.&lt;BR /&gt;It has some conflicting approaches to other parts as being a programming language on its own.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 09:05:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131962#M26893</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2013-09-08T09:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131963#M26894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're going to use commas to delimit your list you will need follow &lt;A __default_attr="8872" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://communities.sas.com/"&gt;&lt;/A&gt; advice and learn macro quoting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%let&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; qtnames = var1, var2, var3;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%put&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%scan&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%superQ&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;qtnames&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;, 2, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%str&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt; &lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt; &lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 11:06:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131963#M26894</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-09-08T11:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131964#M26895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also note, since you are treating both commas and blanks as delimiters, you might want to add blanks to the list of legitimate delimiters by including it in the %str function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%str(, )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 15:21:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131964#M26895</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2013-09-08T15:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131965#M26896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am I?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 22:36:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131965#M26896</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-09-08T22:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131966#M26897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simple answer to "Why?" is that the %scan function is seeing&lt;/P&gt;&lt;P&gt;%scan( var1, var2, var3, 2,",") after resolving Qtnames.&lt;/P&gt;&lt;P&gt;So you need some way to tell the function to ignore the commas in the string. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Sep 2013 15:04:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131966#M26897</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-09-09T15:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131967#M26898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Data_null_.&amp;nbsp; But why the following does not work? I used %str() to tell SAS ot ignore the commas in the string. What is the difference between %str and %superQ? When should I use at compilation quote function, and when should I use at execution quote function, it appears there is no difference?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%put&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%scan&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(%str&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;qtnames&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;, 2, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%str&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 23:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131967#M26898</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-09-10T23:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131968#M26899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ballardw. But why&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt; font-family: Courier New;"&gt;%scan&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;("&amp;amp;qtnames", 2, ",");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Courier New;"&gt;also works, but I did not use any macro quoting function. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 23:52:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131968#M26899</guid>
      <dc:creator>Macro</dc:creator>
      <dc:date>2013-09-10T23:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131969#M26900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The commas did not cause errors because you quoted the commas with regular quoting.&lt;/P&gt;&lt;P&gt;The reason that the scanning still works is because you also included quote character in the list of delimiters.&lt;/P&gt;&lt;P&gt;You could get the same effect by using parentheses around the string value and in the delimiter list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: 'Courier New'; background-color: #ffffff; color: #0000ff;"&gt;%scan&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt; font-family: 'Courier New'; background-color: #ffffff;"&gt;((&amp;amp;qtnames), 2, (,));&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 00:39:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131969#M26900</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-09-11T00:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131970#M26901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WE can use the %Scan many ways in macro like suggested above..as per rules.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;method 1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;%let qtnames = %str(var1, var2, var3);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;%put %scan(&amp;amp;qtnames, 2, ",");&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;method 2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let qtnames = "var1, var2, var3";&lt;/P&gt;&lt;P&gt;%put %scan(&amp;amp;qtnames, 2, ",");&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;method 3:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;%let qtnames = var1, var2, var3;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;%put %scan("&amp;amp;qtnames", 2, ",");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As suggested by &lt;A __default_attr="8872" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; : &lt;A href="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#z3514scan.htm" style="font-size: 10pt; line-height: 1.5em;" title="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#z3514scan.htm"&gt;SAS(R) 9.2 Macro Language: Reference&lt;/A&gt; : you can get clear idea by reading this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Yaswanth &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 10:06:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131970#M26901</guid>
      <dc:creator>yaswanthj</dc:creator>
      <dc:date>2013-09-11T10:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131971#M26902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whether extra spaces that are retained from the source string have an impact depends on how you use the result of the %SCAN() function.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Normally SAS will ignore unquoted spaces at the start and end of a string.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%let qtnames = var1, var2, var3;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for the %PUT function they are ignored.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%put %scan(%superQ(qtnames), 2, %str(,));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;var2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;But if you put them in the middle of a longer string they will stay.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%put |%scan(%superQ(qtnames), 2, %str(,))|;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| var2|&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also for %LET the extra spaces are normally ignored.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%let x= %scan(%superQ(qtnames), 2, %str(,));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%put |&amp;amp;x| ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;|var2|&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you can use %QSCAN() if you want them to stay.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%let x= %&lt;STRONG&gt;q&lt;/STRONG&gt;scan(%superQ(qtnames), 2, %str(,));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%put |&amp;amp;x| ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| var2|&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2013 11:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/131971#M26902</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-09-11T11:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to scan comma delimited macro variable list?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/823461#M325139</link>
      <description>This was really helpful! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Fri, 15 Jul 2022 05:13:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-scan-comma-delimited-macro-variable-list/m-p/823461#M325139</guid>
      <dc:creator>DrAbhijeetSafai</dc:creator>
      <dc:date>2022-07-15T05:13:09Z</dc:date>
    </item>
  </channel>
</rss>

