<?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 Scan Function in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Scan-Function/m-p/672486#M202125</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm doing some data cleansing and i have few words which act as a delimiter. I tried to get the data between two delimiters(Words) and i wasn't able to succeed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used SCAN function where i cant use string/word as a delimiter. any suggestions/solutions are appreciated.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Gokul SHIVANANDA&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jul 2020 10:21:17 GMT</pubDate>
    <dc:creator>GokulShivananda</dc:creator>
    <dc:date>2020-07-27T10:21:17Z</dc:date>
    <item>
      <title>Scan Function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-Function/m-p/672486#M202125</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm doing some data cleansing and i have few words which act as a delimiter. I tried to get the data between two delimiters(Words) and i wasn't able to succeed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used SCAN function where i cant use string/word as a delimiter. any suggestions/solutions are appreciated.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Gokul SHIVANANDA&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 10:21:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-Function/m-p/672486#M202125</guid>
      <dc:creator>GokulShivananda</dc:creator>
      <dc:date>2020-07-27T10:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-Function/m-p/672489#M202127</link>
      <description>&lt;P&gt;How about PRX?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have(keep=string newstring);
   string = "one two three four five six";
   r = prxparse("/one (.*) five/");
   p = prxmatch(r, string);
   newstring = prxposn(r, 1, string);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Jul 2020 10:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-Function/m-p/672489#M202127</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-07-27T10:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Function</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-Function/m-p/672511#M202129</link>
      <description>&lt;P&gt;Show us a few examples. Show us the code you tried.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2020 12:31:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-Function/m-p/672511#M202129</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-27T12:31:31Z</dc:date>
    </item>
  </channel>
</rss>

