<?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: Delete Period after the name in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697736#M25442</link>
    <description>&lt;P&gt;Scan will also use periods as delimiter by default just like you "letters before comma" question.&lt;/P&gt;</description>
    <pubDate>Mon, 09 Nov 2020 21:38:12 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-11-09T21:38:12Z</dc:date>
    <item>
      <title>want to remove perios after the name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697727#M25435</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a dataset:&lt;/P&gt;&lt;P&gt;Ali.&lt;/P&gt;&lt;P&gt;Sara.&lt;/P&gt;&lt;P&gt;Maya.&lt;/P&gt;&lt;P&gt;Bran.&lt;/P&gt;&lt;P&gt;I want to remove the period after the name;&lt;/P&gt;&lt;P&gt;want dataset:&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;P&gt;Sara&lt;/P&gt;&lt;P&gt;Maya&lt;/P&gt;&lt;P&gt;Bran&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you in advance&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 21:21:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697727#M25435</guid>
      <dc:creator>Smitha9</dc:creator>
      <dc:date>2020-11-09T21:21:02Z</dc:date>
    </item>
    <item>
      <title>Delete Period after the name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697731#M25441</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a dataset:&lt;/P&gt;&lt;P&gt;Ali.&lt;/P&gt;&lt;P&gt;Sara.&lt;/P&gt;&lt;P&gt;Maya.&lt;/P&gt;&lt;P&gt;Bran.&lt;/P&gt;&lt;P&gt;I want to remove the period after the name;&lt;/P&gt;&lt;P&gt;want dataset:&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;P&gt;Sara&lt;/P&gt;&lt;P&gt;Maya&lt;/P&gt;&lt;P&gt;Bran&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you in advance&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 21:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697731#M25441</guid>
      <dc:creator>Smitha9</dc:creator>
      <dc:date>2020-11-09T21:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: want to remove perios after the name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697732#M25437</link>
      <description>&lt;P&gt;You can use compress function - to remove periods&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;name = compress(name,'.');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or you can use scan function with period as the delimiter&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;name = scan(name,1,'.');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Nov 2020 21:35:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697732#M25437</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-11-09T21:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: want to remove perios after the name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697733#M25438</link>
      <description>&lt;P&gt;You can search the functions under the "Character" category for one that meets your need.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;COMPRESS(), COMPBL(), TRANSLATE() are some options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=n01f5qrjoh9h4hn1olbdpb5pr2td.htm&amp;amp;locale=da"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=n01f5qrjoh9h4hn1olbdpb5pr2td.htm&amp;amp;locale=da&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/329198"&gt;@Smitha9&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a dataset:&lt;/P&gt;
&lt;P&gt;Ali.&lt;/P&gt;
&lt;P&gt;Sara.&lt;/P&gt;
&lt;P&gt;Maya.&lt;/P&gt;
&lt;P&gt;Bran.&lt;/P&gt;
&lt;P&gt;I want to remove the period after the name;&lt;/P&gt;
&lt;P&gt;want dataset:&lt;/P&gt;
&lt;P&gt;Ali&lt;/P&gt;
&lt;P&gt;Sara&lt;/P&gt;
&lt;P&gt;Maya&lt;/P&gt;
&lt;P&gt;Bran&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you in advance&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 21:36:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697733#M25438</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-11-09T21:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Period after the name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697736#M25442</link>
      <description>&lt;P&gt;Scan will also use periods as delimiter by default just like you "letters before comma" question.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 21:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697736#M25442</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-11-09T21:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Period after the name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697737#M25443</link>
      <description>&lt;P&gt;this is a duplicate of&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697727" target="_self"&gt;https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697727&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 21:38:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697737#M25443</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-11-09T21:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Period after the name</title>
      <link>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697739#M25444</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/88384"&gt;@Shmuel&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;this is a duplicate of&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697727" target="_self"&gt;https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697727&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I've merged them.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 21:38:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/want-to-remove-perios-after-the-name/m-p/697739#M25444</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-11-09T21:38:55Z</dc:date>
    </item>
  </channel>
</rss>

