<?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 How to remove the some charater in different positions? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364961#M86630</link>
    <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to remove some charaters from different postions in the string.&amp;nbsp; Please advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data are list below:&lt;/P&gt;&lt;P&gt;lab_den_pcr_perf_1&lt;/P&gt;&lt;P&gt;mhh_cyto_tests_1__cfdna&lt;/P&gt;&lt;P&gt;nad_cert_30&lt;/P&gt;&lt;P&gt;nad_imag_find___abn_cort_gyr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I would like to change them to:&lt;/P&gt;&lt;P&gt;lab_den_pcr_perf&lt;/P&gt;&lt;P&gt;mhh_cyto_tests__cfdna&lt;/P&gt;&lt;P&gt;nad_cert&lt;/P&gt;&lt;P&gt;nad_imag_find&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Jun 2017 13:07:39 GMT</pubDate>
    <dc:creator>ybz12003</dc:creator>
    <dc:date>2017-06-07T13:07:39Z</dc:date>
    <item>
      <title>How to remove the some charater in different positions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364961#M86630</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to remove some charaters from different postions in the string.&amp;nbsp; Please advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data are list below:&lt;/P&gt;&lt;P&gt;lab_den_pcr_perf_1&lt;/P&gt;&lt;P&gt;mhh_cyto_tests_1__cfdna&lt;/P&gt;&lt;P&gt;nad_cert_30&lt;/P&gt;&lt;P&gt;nad_imag_find___abn_cort_gyr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I would like to change them to:&lt;/P&gt;&lt;P&gt;lab_den_pcr_perf&lt;/P&gt;&lt;P&gt;mhh_cyto_tests__cfdna&lt;/P&gt;&lt;P&gt;nad_cert&lt;/P&gt;&lt;P&gt;nad_imag_find&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2017 13:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364961#M86630</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2017-06-07T13:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the some charater in different positions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364970#M86635</link>
      <description>&lt;P&gt;What are the rules?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2017 13:23:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364970#M86635</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-07T13:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the some charater in different positions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364974#M86637</link>
      <description>&lt;P&gt;As per suggestion of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;, please provide some information, so that someone call help you. I find regular expressions very helpful for this kind of scenarios&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2017 13:38:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364974#M86637</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-07T13:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the some charater in different positions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364990#M86641</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*In the below case i am suppressing only the digits whereever they are located in the string*/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data have;
input text$100.;
cards;
lab_den_pcr_perf_1
mhh_cyto_tests_1__cfdna
nad_cert_30
nad_imag_find___abn_cort_gyr
;

data want;
set have;
new=prxchange('s/\d+//',-1,text);
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 07 Jun 2017 14:04:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/364990#M86641</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2017-06-07T14:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the some charater in different positions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/365067#M86662</link>
      <description>&lt;P&gt;Thanks for the great suggestion. will looking into the prxchange function.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2017 16:19:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-some-charater-in-different-positions/m-p/365067#M86662</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2017-06-07T16:19:16Z</dc:date>
    </item>
  </channel>
</rss>

