<?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 and viewing the result in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791248#M253399</link>
    <description>&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;I have placed scan function on a variable that contain this format100000*01. I need to keep the portion before ".".&lt;/P&gt;
&lt;P&gt;scan(100000*01, 1, "*")&lt;/P&gt;
&lt;P&gt;I didn't receive any errors in the log.&lt;/P&gt;
&lt;P&gt;How can I view that characters are formatted correct? I have 4,000,000 million rows.&lt;/P&gt;
&lt;P&gt;Please let me know.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Blueblue&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jan 2022 19:46:17 GMT</pubDate>
    <dc:creator>GN0001</dc:creator>
    <dc:date>2022-01-20T19:46:17Z</dc:date>
    <item>
      <title>Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791248#M253399</link>
      <description>&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;I have placed scan function on a variable that contain this format100000*01. I need to keep the portion before ".".&lt;/P&gt;
&lt;P&gt;scan(100000*01, 1, "*")&lt;/P&gt;
&lt;P&gt;I didn't receive any errors in the log.&lt;/P&gt;
&lt;P&gt;How can I view that characters are formatted correct? I have 4,000,000 million rows.&lt;/P&gt;
&lt;P&gt;Please let me know.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Blueblue&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 19:46:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791248#M253399</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-20T19:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791250#M253400</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;scan(100000*01, 1, "*")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Your first argument is numeric (the result of the calculation 100000 multiplied by 1), which is automatically converted to character with the BEST12. format before being fed to the SCAN function.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 19:52:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791250#M253400</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-01-20T19:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791254#M253403</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;I have placed scan function on a variable that contain this&lt;STRIKE&gt; format&lt;/STRIKE&gt;100000*01. I need to keep the portion before ".".&lt;/P&gt;
&lt;P&gt;scan(100000*01, 1, "*")&lt;/P&gt;
&lt;P&gt;I didn't receive any errors in the log.&lt;/P&gt;
&lt;P&gt;How can I view that characters are formatted correct? I have 4,000,000 million rows.&lt;/P&gt;
&lt;P&gt;Please let me know.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Blueblue&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have a variable that has values (not formats) that look like "10000*01"&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, you haven't specified the variable TYPE - character or numeric.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.2/lefunctionsref/p0jshdjy2z9zdzn1h7k90u99lyq6.htm" target="_self"&gt;SCAN() documentation&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="xisDoc-keyword"&gt;SCAN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;FONT color="#FF0000"&gt;string&lt;/FONT&gt;, count, character-list, modifier)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 class="xisDoc-argument"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;EM class="xisDoc-userSuppliedValue"&gt;string&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;DIV class="xisDoc-argumentDescription"&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;specifies a &lt;STRONG&gt;character constant, variable, or expression&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;Your usage provides a numeric value as the first argument not a character.&lt;/P&gt;
&lt;PRE&gt;scan(&lt;STRONG&gt;&lt;FONT color="#993366"&gt;100000*01&lt;/FONT&gt;&lt;/STRONG&gt;, 1, "*")&lt;/PRE&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Jan 2022 20:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791254#M253403</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-01-20T20:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791259#M253408</link>
      <description>&lt;P&gt;No error but I bet you have a NOTE in the log that you need to consider. A simple example of code such as you used:&lt;/P&gt;
&lt;PRE&gt;1    data example;
2       x=scan(100000*01, 1, "*");
3    run;

NOTE: Numeric values have been converted to character values at the places given by:
      (Line):(Column).
      2:17
&lt;/PRE&gt;
&lt;P&gt;Which tells you that a value was converted. The 2:17 refers to the * inside your Scan function call.&lt;/P&gt;
&lt;P&gt;SAS will try to guess what you intend and a value that is not character where it should be involves SAS applyiing a number of rules. One is if the value could be a number (no quotes here) then use the number and then convert to character for the SCAN function.&lt;/P&gt;
&lt;P&gt;In this case the character you used, the * has a meaning with numbers: multiply so that step succeeds. If you had a different character, such as $, you might get a result like this:&lt;/P&gt;
&lt;PRE&gt;data example;
   x=scan(100000$01, 1, "$");
run;&lt;/PRE&gt;
&lt;P&gt;So any single character between two numbers that results in a valid numeric expression will yield unexpected result such as: + - = /&amp;nbsp; .&amp;nbsp; (yes the decimal character)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you tell without running the code what happens with this?&lt;/P&gt;
&lt;PRE&gt;data example;
   x=scan(100000E01, 1, "E");
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Jan 2022 20:22:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791259#M253408</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-01-20T20:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791286#M253421</link>
      <description>Hello Reza,&lt;BR /&gt;Does this return 100000?&lt;BR /&gt;&lt;BR /&gt;And since the data type of the field is character, then 100000 will be a character.&lt;BR /&gt;I am trying to make sure if my function is correct or not and then I asked if there is any way to view the result like what we do in proc freq.&lt;BR /&gt;&lt;BR /&gt;Respectfully,&lt;BR /&gt;BlueBlue&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Jan 2022 21:27:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791286#M253421</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-20T21:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791288#M253423</link>
      <description>Hello,&lt;BR /&gt;This is what I have inherited:&lt;BR /&gt;It is a column with values 1110*01 and it is all character. I want to extract all before *.&lt;BR /&gt;What is the best approach?&lt;BR /&gt;Regards,&lt;BR /&gt;BlueBlue</description>
      <pubDate>Thu, 20 Jan 2022 21:31:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791288#M253423</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-20T21:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791297#M253431</link>
      <description>&lt;P&gt;Your initial attempt did not work because you provided a number. Provide a character, which means just adding quotes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;scan("100000*01", 1, "*")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, this is a useless check and made more work for you because it's not reflective of your real problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because you're dealing with a variable make a variable to use in the function to test it unless you're planning to type in 4,000,000 values somehow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data check;
variable_to_split = "1111*01";
first_part = scan(variable_to_split, 1, "*");
second_part = scan(variable_to_split, 2, "*");
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Jan 2022 21:44:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791297#M253431</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-01-20T21:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791299#M253433</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hello,&lt;BR /&gt;This is what I have inherited:&lt;BR /&gt;It is a column with values 1110*01 and it is all character. I want to extract all before *.&lt;BR /&gt;What is the best approach?&lt;BR /&gt;Regards,&lt;BR /&gt;BlueBlue&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If it is a variable you code is basically correct:&lt;/P&gt;
&lt;P&gt;Newvariable = scan(yourvariablename,1,'*');&lt;/P&gt;
&lt;P&gt;The issue is that you posted literal values and not the variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you figured out why 10000E01 doesn't throw an error in my previous post?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 21:47:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791299#M253433</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-01-20T21:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791301#M253435</link>
      <description>It keeps 100000.</description>
      <pubDate>Thu, 20 Jan 2022 21:49:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791301#M253435</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-20T21:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791302#M253436</link>
      <description>&lt;P&gt;Why?&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/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;It keeps 100000.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 21:51:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791302#M253436</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-01-20T21:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791305#M253437</link>
      <description>Hello all,&lt;BR /&gt;What I ask, probably I couldn't ask it properly. How to view the content of a column in SAS once a function is done one that column without eyeballing.&lt;BR /&gt;&lt;BR /&gt;If I have 90,000,000 rows. It is hard to scroll and view observation by observation if the function has worked on all the rows.&lt;BR /&gt;&lt;BR /&gt;No one replied to this part.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;BlueBlue</description>
      <pubDate>Thu, 20 Jan 2022 21:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791305#M253437</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-20T21:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791308#M253439</link>
      <description>Hello Reza,&lt;BR /&gt;I am trying to take off *01 from 1111*01. Using a function on a field which has character type in a dataset doesn't change the data type of the field. This is what I have understood the entire life.&lt;BR /&gt;&lt;BR /&gt;1111 stays character in a dataset which is already set the data type for this column as character.&lt;BR /&gt;Respectfully,&lt;BR /&gt;BlueBlue</description>
      <pubDate>Thu, 20 Jan 2022 21:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791308#M253439</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-20T21:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791309#M253440</link>
      <description>Hello,&lt;BR /&gt;I have not figured out why it doesn't throw an error in the log. I eyeballed it. What I wanted is achieved and data type stays same as before.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;BlueBlue</description>
      <pubDate>Thu, 20 Jan 2022 21:59:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791309#M253440</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-20T21:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791618#M253601</link>
      <description>&lt;P&gt;Hi Reza &amp;amp; all,&lt;BR /&gt;What I asked was when we apply a function to a data set, for example a scan function on a values of a variable, how can we make sure our function has modified all the values?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I usually eyeball it and a little of log can help. Is there any other approach?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;please advise me.&lt;/P&gt;
&lt;P&gt;respectfully,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;blue blue&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jan 2022 02:35:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791618#M253601</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-22T02:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791619#M253602</link>
      <description>Hello team member,&lt;BR /&gt;Isn’t a column not called a variable in SAS?&lt;BR /&gt;Respectfully &lt;BR /&gt;Blue and black&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Jan 2022 02:42:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791619#M253602</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2022-01-22T02:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791621#M253604</link>
      <description>&lt;P&gt;One easy check would be to confirm that your part one and two variables are populated for all rows. If populated you could check if the results are just numbers and no other characters.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jan 2022 02:50:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791621#M253604</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-01-22T02:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Scan function and viewing the result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791623#M253605</link>
      <description>&lt;P&gt;To test your code there are various ways. Unit test are the most common one, not really a SAS concept though, a programming methodology more so.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*My* method is to run a PROC FREQ on the input variable. I look for all of the different unique cases that are possible and create small dataset with those values only. You can pipe your PROC FREQ output to a data set to help with this. Then you test it on the small data set where you can verify all data points. Once it's verified then you apply it to your big dataset.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also run a PROC FREQ on the input variable and compare it to the output but if you have 4million unique values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=want;
table inputVariable * outputVariable / out = check;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&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/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Reza &amp;amp; all,&lt;BR /&gt;What I asked was when we apply a function to a data set, for example a scan function on a values of a variable, how can we make sure our function has modified all the values?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I usually eyeball it and a little of log can help. Is there any other approach?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;please advise me.&lt;/P&gt;
&lt;P&gt;respectfully,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;blue blue&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jan 2022 02:55:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Scan-function-and-viewing-the-result/m-p/791623#M253605</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-01-22T02:55:57Z</dc:date>
    </item>
  </channel>
</rss>

