<?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 Excluding values with a special character (eg name* ) at the end in  proc sql or SAS Data Step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Excluding-values-with-a-special-character-eg-name-at-the-end-in/m-p/790988#M253287</link>
    <description>&lt;P&gt;Hi Experts,&lt;BR /&gt;I have columns in a large database which have values like:&lt;BR /&gt;&lt;U&gt;Column-&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Values available&lt;/U&gt;&lt;BR /&gt;name&amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name, name* &lt;BR /&gt;sid&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; id*, id&lt;BR /&gt;score&amp;nbsp; &amp;nbsp;-&amp;nbsp; &amp;nbsp; &amp;nbsp; good, good*&lt;/P&gt;
&lt;P&gt;How do I fetch the values without the asterisk(*) at the end in proc sql or data step? &lt;BR /&gt;I just need name/id/good values( eg; not name*/id*/score*)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~~~&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;create table fetch as &lt;BR /&gt;select name from A where name ...(???)&lt;BR /&gt;;quit;&lt;/P&gt;
&lt;P&gt;I appreciate your help on this.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jan 2022 18:56:42 GMT</pubDate>
    <dc:creator>inquistive</dc:creator>
    <dc:date>2022-01-19T18:56:42Z</dc:date>
    <item>
      <title>Excluding values with a special character (eg name* ) at the end in  proc sql or SAS Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excluding-values-with-a-special-character-eg-name-at-the-end-in/m-p/790988#M253287</link>
      <description>&lt;P&gt;Hi Experts,&lt;BR /&gt;I have columns in a large database which have values like:&lt;BR /&gt;&lt;U&gt;Column-&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Values available&lt;/U&gt;&lt;BR /&gt;name&amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name, name* &lt;BR /&gt;sid&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; id*, id&lt;BR /&gt;score&amp;nbsp; &amp;nbsp;-&amp;nbsp; &amp;nbsp; &amp;nbsp; good, good*&lt;/P&gt;
&lt;P&gt;How do I fetch the values without the asterisk(*) at the end in proc sql or data step? &lt;BR /&gt;I just need name/id/good values( eg; not name*/id*/score*)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~~~&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;create table fetch as &lt;BR /&gt;select name from A where name ...(???)&lt;BR /&gt;;quit;&lt;/P&gt;
&lt;P&gt;I appreciate your help on this.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 18:56:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excluding-values-with-a-special-character-eg-name-at-the-end-in/m-p/790988#M253287</guid>
      <dc:creator>inquistive</dc:creator>
      <dc:date>2022-01-19T18:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding values with a special character (eg name* ) at the end in  proc sql or SAS Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Excluding-values-with-a-special-character-eg-name-at-the-end-in/m-p/790990#M253288</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;WHERE findc(name, '*') = 0&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;FINDC()&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_022/lefunctionsref/n1mdh2gvd5potjn14jipysvzn4o7.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_022/lefunctionsref/n1mdh2gvd5potjn14jipysvzn4o7.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/83652"&gt;@inquistive&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Experts,&lt;BR /&gt;I have columns in a large database which have values like:&lt;BR /&gt;&lt;U&gt;Column-&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Values available&lt;/U&gt;&lt;BR /&gt;name&amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name, name* &lt;BR /&gt;sid&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; id*, id&lt;BR /&gt;score&amp;nbsp; &amp;nbsp;-&amp;nbsp; &amp;nbsp; &amp;nbsp; good, good*&lt;/P&gt;
&lt;P&gt;How do I fetch the values without the asterisk(*) at the end in proc sql or data step? &lt;BR /&gt;I just need name/id/good values( eg; not name*/id*/score*)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~~~&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;create table fetch as &lt;BR /&gt;select name from A where name ...(???)&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;I appreciate your help on this.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 18:59:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Excluding-values-with-a-special-character-eg-name-at-the-end-in/m-p/790990#M253288</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-01-19T18:59:06Z</dc:date>
    </item>
  </channel>
</rss>

