<?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 Identify name using prxmatch in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Identify-name-using-prxmatch/m-p/846534#M36899</link>
    <description>Hi All. Need help on prxmatch function.&lt;BR /&gt;&lt;BR /&gt;Can i know how do i use prxmatch function to identify first two alphabets of these group of customer name?&lt;BR /&gt;&lt;BR /&gt;Needed to identify:-&lt;BR /&gt;&lt;BR /&gt;1. Name starts with A and follow by a space will need to group as “A”. Example: A Academy Ltd&lt;BR /&gt;2. Any Name starts from AA to AC&lt;BR /&gt;will need to group as “AA-AC”. Example: AA Bookstore Pte Ltd, ABC Partnership, Academy Holding&lt;BR /&gt;3. Any name starts from AD to AF will need to group as “AD-AF”. Example: Affluent Circle Ltd, Adam James Smith.&lt;BR /&gt;&lt;BR /&gt;Thank you for helping.</description>
    <pubDate>Mon, 28 Nov 2022 05:04:49 GMT</pubDate>
    <dc:creator>abx</dc:creator>
    <dc:date>2022-11-28T05:04:49Z</dc:date>
    <item>
      <title>Identify name using prxmatch</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Identify-name-using-prxmatch/m-p/846534#M36899</link>
      <description>Hi All. Need help on prxmatch function.&lt;BR /&gt;&lt;BR /&gt;Can i know how do i use prxmatch function to identify first two alphabets of these group of customer name?&lt;BR /&gt;&lt;BR /&gt;Needed to identify:-&lt;BR /&gt;&lt;BR /&gt;1. Name starts with A and follow by a space will need to group as “A”. Example: A Academy Ltd&lt;BR /&gt;2. Any Name starts from AA to AC&lt;BR /&gt;will need to group as “AA-AC”. Example: AA Bookstore Pte Ltd, ABC Partnership, Academy Holding&lt;BR /&gt;3. Any name starts from AD to AF will need to group as “AD-AF”. Example: Affluent Circle Ltd, Adam James Smith.&lt;BR /&gt;&lt;BR /&gt;Thank you for helping.</description>
      <pubDate>Mon, 28 Nov 2022 05:04:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Identify-name-using-prxmatch/m-p/846534#M36899</guid>
      <dc:creator>abx</dc:creator>
      <dc:date>2022-11-28T05:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Identify name using prxmatch</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Identify-name-using-prxmatch/m-p/846545#M36900</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input x $80.;
length group $ 20;
if prxmatch('/^A\s+/i',left(x)) then group='A';
if prxmatch('/^A[A-C]/i',left(x)) then group='AA-AC';
if prxmatch('/^A[D-F]/i',left(x)) then group='AD-AF';
cards;
A Academy Ltd
AA Bookstore Pte Ltd, ABC Partnership, Academy Holding
Affluent Circle Ltd, Adam James Smith.
;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Nov 2022 07:23:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Identify-name-using-prxmatch/m-p/846545#M36900</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-11-28T07:23:11Z</dc:date>
    </item>
  </channel>
</rss>

