<?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: i tryed to remove  two spl character  at a time using tranwrd in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342563#M78555</link>
    <description>&lt;P&gt;To REMOVE&amp;nbsp;characters use COMPRESS funtion.&amp;nbsp;&amp;nbsp; TRANWRD is the wrong funtion for your problem.&lt;/P&gt;</description>
    <pubDate>Mon, 20 Mar 2017 12:54:07 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2017-03-20T12:54:07Z</dc:date>
    <item>
      <title>i tryed to remove  two spl character  at a time using tranwrd</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342562#M78554</link>
      <description>&lt;P&gt;Hi i&amp;nbsp;am trying remove spl char at a time . but it's not work proparly .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;exp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data exp;&lt;BR /&gt;a='i will try to removie spl char @ and another spl $';&lt;BR /&gt;a1=tranwrd(a,'@$' , '' );&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;i want a1 varibel with out spl char;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 12:51:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342562#M78554</guid>
      <dc:creator>teja5959</dc:creator>
      <dc:date>2017-03-20T12:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: i tryed to remove  two spl character  at a time using tranwrd</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342563#M78555</link>
      <description>&lt;P&gt;To REMOVE&amp;nbsp;characters use COMPRESS funtion.&amp;nbsp;&amp;nbsp; TRANWRD is the wrong funtion for your problem.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 12:54:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342563#M78555</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2017-03-20T12:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: i tryed to remove  two spl character  at a time using tranwrd</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342601#M78560</link>
      <description>&lt;P&gt;Or translate may be what you were thinking of.&lt;/P&gt;
&lt;PRE&gt;data exp;
   a='i will try to removie spl char @ and another spl $';
   a1=translate (a,'','@$' );
run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Mar 2017 14:29:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342601#M78560</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-03-20T14:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: i tryed to remove  two spl character  at a time using tranwrd</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342621#M78562</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Or translate may be what you were thinking of.&lt;/P&gt;
&lt;PRE&gt;data exp;
   a='i will try to removie spl char @ and another spl $';
   a1=translate (a,&lt;FONT color="#ff0000"&gt;''&lt;/FONT&gt;,'@$' );
run;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Translate doesn't remove the characters you are replacing with blanks.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 15:06:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342621#M78562</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2017-03-20T15:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: i tryed to remove  two spl character  at a time using tranwrd</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342734#M78588</link>
      <description>&lt;P&gt;Understood &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp;but since the OP started with one of the translate functions I was hoping to point him to the slightly more correct option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And since there was not actual desired output posted ...&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2017 19:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-tryed-to-remove-two-spl-character-at-a-time-using-tranwrd/m-p/342734#M78588</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-03-20T19:34:14Z</dc:date>
    </item>
  </channel>
</rss>

