<?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: Wildcard Wish -- More Flexibility? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Wildcard-Wish-More-Flexibility/m-p/766746#M243020</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/22691"&gt;@NKormanik&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bigdataset;
 set wxyz_:;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Super.&amp;nbsp; Works great.&amp;nbsp; But, what if 'wxyz' is at &lt;STRONG&gt;end&lt;/STRONG&gt; of dataset name?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Curious why SAS has not added more flexibility there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Comments greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nicholas Kormanik&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Probably for the same reason that variable lists don't allow use of suffixes and likely related to really obnoxious coding. Prefixes start in the same place. But suffixes could begin at any character and coding can way more complicated.&lt;/P&gt;</description>
    <pubDate>Thu, 09 Sep 2021 01:17:52 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2021-09-09T01:17:52Z</dc:date>
    <item>
      <title>Wildcard Wish -- More Flexibility?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wildcard-Wish-More-Flexibility/m-p/766734#M243015</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bigdataset;
 set wxyz_:;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Super.&amp;nbsp; Works great.&amp;nbsp; But, what if 'wxyz' is at &lt;STRONG&gt;end&lt;/STRONG&gt; of dataset name?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Curious why SAS has not added more flexibility there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Comments greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nicholas Kormanik&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 00:28:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wildcard-Wish-More-Flexibility/m-p/766734#M243015</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2021-09-09T00:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard Wish -- More Flexibility?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wildcard-Wish-More-Flexibility/m-p/766743#M243018</link>
      <description>There's easy workarounds to this issue which is why I suspect there's been no development. &lt;BR /&gt;&lt;BR /&gt;proc sql no print;&lt;BR /&gt;select name into :data_set_list separated by " " from sashelp.vtable where name like '%_xyz';&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;%put &amp;amp;data_set_list;&lt;BR /&gt;&lt;BR /&gt;If the language depends on prefixes and the data sets are designed with suffixes instead, that's bad design. &lt;BR /&gt;</description>
      <pubDate>Thu, 09 Sep 2021 01:15:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wildcard-Wish-More-Flexibility/m-p/766743#M243018</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-09-09T01:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard Wish -- More Flexibility?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wildcard-Wish-More-Flexibility/m-p/766746#M243020</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/22691"&gt;@NKormanik&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bigdataset;
 set wxyz_:;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Super.&amp;nbsp; Works great.&amp;nbsp; But, what if 'wxyz' is at &lt;STRONG&gt;end&lt;/STRONG&gt; of dataset name?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Curious why SAS has not added more flexibility there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Comments greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nicholas Kormanik&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Probably for the same reason that variable lists don't allow use of suffixes and likely related to really obnoxious coding. Prefixes start in the same place. But suffixes could begin at any character and coding can way more complicated.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 01:17:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wildcard-Wish-More-Flexibility/m-p/766746#M243020</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-09-09T01:17:52Z</dc:date>
    </item>
  </channel>
</rss>

