<?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 second character of a string ? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-second-character-of-a-string/m-p/560400#M156701</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 the character located a the Second position of a string in the character variable IDCODE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know how to do that ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 21 May 2019 08:45:56 GMT</pubDate>
    <dc:creator>Hugo_B</dc:creator>
    <dc:date>2019-05-21T08:45:56Z</dc:date>
    <item>
      <title>How to remove the second character of a string ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-second-character-of-a-string/m-p/560400#M156701</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 the character located a the Second position of a string in the character variable IDCODE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know how to do that ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 08:45:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-second-character-of-a-string/m-p/560400#M156701</guid>
      <dc:creator>Hugo_B</dc:creator>
      <dc:date>2019-05-21T08:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the second character of a string ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-second-character-of-a-string/m-p/560408#M156706</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
   set sashelp.class (keep=name);
   newname=cats(substr(name,1,1),substr(name,3));
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 May 2019 09:00:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-second-character-of-a-string/m-p/560408#M156706</guid>
      <dc:creator>ScottBass</dc:creator>
      <dc:date>2019-05-21T09:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the second character of a string ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-second-character-of-a-string/m-p/560410#M156708</link>
      <description>&lt;P&gt;Maybe something like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;idcode = cats(first(idcode), substr(idcode, 3));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 May 2019 09:03:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-remove-the-second-character-of-a-string/m-p/560410#M156708</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-05-21T09:03:23Z</dc:date>
    </item>
  </channel>
</rss>

