<?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: sql in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19314#M3923</link>
    <description>Thanks Poling .. Its working</description>
    <pubDate>Tue, 01 Mar 2011 21:01:43 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2011-03-01T21:01:43Z</dc:date>
    <item>
      <title>sql</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19310#M3919</link>
      <description>Hi ,&lt;BR /&gt;
&lt;BR /&gt;
 I need to remove from the output file all ID that have an alpha at the beginning of their id number.&lt;BR /&gt;
&lt;BR /&gt;
currently in the program ,&lt;BR /&gt;
provnos = substr(provno,1,15);&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;Current ID	  Modify  ID&lt;/B&gt;&lt;BR /&gt;
A119966-A85	119966-A85&lt;BR /&gt;
A119966-B85	119966-B85&lt;BR /&gt;
A121065-A31	121065-A31&lt;BR /&gt;
A123206-A18	123206-A18&lt;BR /&gt;
A123206-B18	123206-B18&lt;BR /&gt;
&lt;BR /&gt;
Thanks in Advance</description>
      <pubDate>Tue, 01 Mar 2011 19:29:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19310#M3919</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-03-01T19:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: sql</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19311#M3920</link>
      <description>data x;&lt;BR /&gt;
length currentID$ 15.;&lt;BR /&gt;
input CurrentID$;&lt;BR /&gt;
cards;&lt;BR /&gt;
A119966-A85&lt;BR /&gt;
A119966-B85&lt;BR /&gt;
A121065-A31&lt;BR /&gt;
A123206-A18&lt;BR /&gt;
A123206-B18&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
data y;&lt;BR /&gt;
set x;&lt;BR /&gt;
&lt;BR /&gt;
new = substr(CurrentID,2,12);&lt;BR /&gt;
run;</description>
      <pubDate>Tue, 01 Mar 2011 19:40:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19311#M3920</guid>
      <dc:creator>SAS83</dc:creator>
      <dc:date>2011-03-01T19:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: sql</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19312#M3921</link>
      <description>Ravi,&lt;BR /&gt;
&lt;BR /&gt;
Can you let me know wat to do in this case if we need to remove just A on the report,&lt;BR /&gt;
&lt;BR /&gt;
Current  ID                   Modify  ID&lt;BR /&gt;
1196645                          889765&lt;BR /&gt;
789765                            879643&lt;BR /&gt;
A119966-A85	119966-A85&lt;BR /&gt;
A119966-B85	119966-B85&lt;BR /&gt;
A121065-A31	121065-A31&lt;BR /&gt;
A123206-A18	123206-A18&lt;BR /&gt;
A123206-B18	123206-B18&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
sudha</description>
      <pubDate>Tue, 01 Mar 2011 19:58:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19312#M3921</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-03-01T19:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: sql</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19313#M3922</link>
      <description>if anyalpha(currentid)=1 then currentid=substr(currentid, 2);</description>
      <pubDate>Tue, 01 Mar 2011 20:43:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19313#M3922</guid>
      <dc:creator>polingjw</dc:creator>
      <dc:date>2011-03-01T20:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: sql</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19314#M3923</link>
      <description>Thanks Poling .. Its working</description>
      <pubDate>Tue, 01 Mar 2011 21:01:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/sql/m-p/19314#M3923</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-03-01T21:01:43Z</dc:date>
    </item>
  </channel>
</rss>

