<?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: RTDM/BRM functions in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/563117#M10843</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;RTDM its real time desicion manager or SASCIStudio and BRM its Bussiness Rules Manage&lt;/P&gt;</description>
    <pubDate>Sun, 02 Jun 2019 06:39:12 GMT</pubDate>
    <dc:creator>YuriGut</dc:creator>
    <dc:date>2019-06-02T06:39:12Z</dc:date>
    <item>
      <title>RTDM/BRM functions</title>
      <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538570#M6969</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I got character&amp;nbsp;object ( &amp;lt;FlagsList&amp;gt; ) that look like this&amp;nbsp; (,701,803,555,523)&amp;nbsp; all i want, it's to exclude particular number and comma for examle &amp;lt;&amp;lt;,701&amp;gt;&amp;gt;&amp;nbsp; or multipal chose of numbers&amp;nbsp;like &amp;lt;&amp;lt;,701,555&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;I try to find some RTDM function&amp;nbsp; like COMPRESS or TRIM and used them different ways&lt;/P&gt;&lt;P&gt;All my results were &amp;nbsp;like exclude of digits and not complete number&lt;/P&gt;&lt;P&gt;like COMPRESS (FlagsList , ',701')&amp;nbsp; gave me (83 555 523)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some Help Please&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 06:18:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538570#M6969</guid>
      <dc:creator>YuriGut</dc:creator>
      <dc:date>2019-02-26T06:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: RTDM/BRM functions</title>
      <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538573#M6970</link>
      <description>&lt;P&gt;You can do something like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
string="(,701,803,555,523)";
newstring=tranwrd(string, ",701", "");
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 26 Feb 2019 06:27:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538573#M6970</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-02-26T06:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: RTDM/BRM functions</title>
      <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538580#M6971</link>
      <description>Hi&lt;BR /&gt;Thank you , but I looking for RTDM function only solution.</description>
      <pubDate>Tue, 26 Feb 2019 07:19:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538580#M6971</guid>
      <dc:creator>YuriGut</dc:creator>
      <dc:date>2019-02-26T07:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: RTDM/BRM functions</title>
      <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538604#M6973</link>
      <description>&lt;P&gt;Have a look here&amp;nbsp;&lt;A href="http://support.sas.com/kb/44/456.html" target="_blank"&gt;http://support.sas.com/kb/44/456.html&lt;/A&gt; seems like you should be able to use tranwrd with the workaround suggested.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 10:09:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/538604#M6973</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2019-02-26T10:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: RTDM/BRM functions</title>
      <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/562526#M10757</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;have you already tried a combination of the following functions:&lt;/P&gt;&lt;P&gt;1. CAT(string, string, ...): it concatenates the argument of the function;&lt;/P&gt;&lt;P&gt;2. SUBSTR(string, position, length): it returns a substring;&lt;/P&gt;&lt;P&gt;3. INDEX(source, excerpt): it searches the source for the character string specified by the excerpt. It returns the position of the source into the excerpt;&lt;/P&gt;&lt;P&gt;4. LENGTHC(string): it returns the length of a string.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paolo&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 11:49:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/562526#M10757</guid>
      <dc:creator>psmerill</dc:creator>
      <dc:date>2019-05-30T11:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: RTDM/BRM functions</title>
      <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/562873#M10803</link>
      <description>&lt;P&gt;What is RTDM and BRM? Please explain.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 14:55:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/562873#M10803</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-05-31T14:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: RTDM/BRM functions</title>
      <link>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/563117#M10843</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;RTDM its real time desicion manager or SASCIStudio and BRM its Bussiness Rules Manage&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jun 2019 06:39:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/RTDM-BRM-functions/m-p/563117#M10843</guid>
      <dc:creator>YuriGut</dc:creator>
      <dc:date>2019-06-02T06:39:12Z</dc:date>
    </item>
  </channel>
</rss>

