<?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: SAS Function Help in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Function-Help/m-p/684816#M207603</link>
    <description>&lt;P&gt;Thanks . Your answer helped me.&lt;/P&gt;</description>
    <pubDate>Thu, 17 Sep 2020 21:45:24 GMT</pubDate>
    <dc:creator>mounikag</dc:creator>
    <dc:date>2020-09-17T21:45:24Z</dc:date>
    <item>
      <title>SAS Function Help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Function-Help/m-p/684793#M207588</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help in programming part: Data looks as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Rawdata:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Subject&amp;nbsp; &amp;nbsp;&amp;nbsp;category&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LEFT DELTOID MUSCLE&lt;/P&gt;&lt;P&gt;101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RIGHT DELTOID MUSCLE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So&amp;nbsp; I need a output as below:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Output dataset:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Subject&amp;nbsp; &amp;nbsp; &amp;nbsp;category1&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DELTOID MUSCLE&lt;/P&gt;&lt;P&gt;101&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DELTOID MUSCLE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So which character function I need to use to get only 'deltoid muscle' string in the output. Please provide your inputs. TIA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 21:04:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Function-Help/m-p/684793#M207588</guid>
      <dc:creator>mounikag</dc:creator>
      <dc:date>2020-09-17T21:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Function Help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Function-Help/m-p/684802#M207595</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Subject $3.    category &amp;amp; $20.;
cards;
101         LEFT DELTOID MUSCLE
101         RIGHT DELTOID MUSCLE
;

data want;
 set have;
 length need $100;
 Need=substr(category,anyspace(strip(category))+1);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Sep 2020 21:11:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Function-Help/m-p/684802#M207595</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-09-17T21:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Function Help</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Function-Help/m-p/684816#M207603</link>
      <description>&lt;P&gt;Thanks . Your answer helped me.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 21:45:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Function-Help/m-p/684816#M207603</guid>
      <dc:creator>mounikag</dc:creator>
      <dc:date>2020-09-17T21:45:24Z</dc:date>
    </item>
  </channel>
</rss>

