<?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: removing leading zeros function in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462177#M29809</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209962"&gt;@RENATA1&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have an existing global variable Pol_nbr - it is 9 characters long (it is a string, not a number):&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR = '000742196','000012345'; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I need to use two databases to extract data under the POL_NBR; one database uses all nine characters, the other uses six characters (without the first leading zeros).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I'm trying to find a function that converts POL_NBR into&amp;nbsp;POL_NBR2 that would remove the three leading zeros and keep the remaining&amp;nbsp;numbers unchanged.&amp;nbsp;&lt;/FONT&gt;&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;Are they actually numbers? If so then just convert them both to numbers and compare those..&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select * 
from a
inner join b
on input(a.pol_nbr,32.) = input(b.pol_nbr2,32.)
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 14 May 2018 19:40:32 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2018-05-14T19:40:32Z</dc:date>
    <item>
      <title>removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462166#M29800</link>
      <description>&lt;P&gt;I am creating some global variables:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR = '000742196','00012345'; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;and I want to create same exact one but without leading zeros, ex:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR2 = '742196','12345'; - what function can I use to achieve this?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;thank you!!!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 19:10:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462166#M29800</guid>
      <dc:creator>RENATA1</dc:creator>
      <dc:date>2018-05-14T19:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462169#M29801</link>
      <description>&lt;P&gt;I would use the INPUT() function to convert it to a number and then that will automatically remove the leading zeroes.&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/209962"&gt;@RENATA1&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I am creating some global variables:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR = '000742196','00012345'; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;and I want to create same exact one but without leading zeros, ex:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR2 = '742196','12345'; - what function can I use to achieve this?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;thank you!!!&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 19:15:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462169#M29801</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-14T19:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462170#M29802</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%LET POL_NBR = '000742196','00012345';

%let POL_NBR=%sysfunc(compress(%bquote(&amp;amp;POL_NBR),0));
%put POL_NBR=&amp;amp;POL_NBR;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 May 2018 19:17:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462170#M29802</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-05-14T19:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462171#M29803</link>
      <description>&lt;P&gt;Thank you soo much for your solution!! would you by any chance know if there is an option to remove only first three leading zeros, and if there is a zero in a forth or fifth&amp;nbsp;position, keep those?&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 19:22:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462171#M29803</guid>
      <dc:creator>RENATA1</dc:creator>
      <dc:date>2018-05-14T19:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462172#M29804</link>
      <description>&lt;P&gt;How did you creating the original macro variable that has the leading zeros?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would be easier to fix it before the quotes and commas are added.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the string is as regular as your example then you could probably generate a regular expression that would search for single quote followed by one or more zero and than other digit and remove the zeros.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if the string is "hand crafted" you might have better luck processing each element separately with a macro "function".&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro fix (value);
%local i word return sep ;
%do i=1 %to %sysfunc(countw(&amp;amp;value,%str(,),mq));
  %let word=%sysfunc(dequote(%scan(&amp;amp;value,&amp;amp;i,%str(,),mq)));
  %let word=%substr(&amp;amp;word,%sysfunc(verify(&amp;amp;word,0)));
  %let return=&amp;amp;return.&amp;amp;sep.%sysfunc(quote(&amp;amp;word,%str(%')));
  %let sep=,;
%end;
&amp;amp;return.
%mend fix ;

%LET POL_NBR = '000742196','00012345';
%put POL_NBR=|&amp;amp;pol_nbr| ;
%put want=|%fix(%bquote(&amp;amp;pol_nbr))|;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 19:33:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462172#M29804</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-05-14T19:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462173#M29805</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209962"&gt;@RENATA1&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Thank you soo much for your solution!! would you by any chance know if there is an option to remove only first three leading zeros, and if there is a zero in a forth or fifth&amp;nbsp;position, keep those?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please explain it more detail.&amp;nbsp; Normally with numbers you count places from the decimal point. So are you saying your values are all less than 100,000?&amp;nbsp; So that after converting to a number you want them re-converted back to strings using the Z5 format?&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 19:25:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462173#M29805</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-05-14T19:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462174#M29806</link>
      <description>Then you should use SUBSTR instead. &lt;BR /&gt;And COMPRESS() wouldn't work in general because it would remove all 0's, not just leading zeroes.</description>
      <pubDate>Mon, 14 May 2018 19:27:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462174#M29806</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-14T19:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462175#M29807</link>
      <description>&lt;P&gt;Can you please make your question fully comprehensive to avoid going back and forth, so that we can give the code in full in one go?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does all your data have leading zeros or only in some?&lt;/P&gt;&lt;P&gt;and other details please3&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 19:27:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462175#M29807</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-05-14T19:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462176#M29808</link>
      <description>&lt;P&gt;I have an existing global variable Pol_nbr - it is 9 characters long (it is a string, not a number):&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR = '000742196','000012345'; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I need to use two databases to extract data under the POL_NBR; one database uses all nine characters, the other uses six characters (without the first leading zeros).&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I'm trying to find a function that converts POL_NBR into&amp;nbsp;POL_NBR2 that would remove the three leading zeros and keep the remaining&amp;nbsp;numbers unchanged.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 19:37:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462176#M29808</guid>
      <dc:creator>RENATA1</dc:creator>
      <dc:date>2018-05-14T19:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462177#M29809</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209962"&gt;@RENATA1&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have an existing global variable Pol_nbr - it is 9 characters long (it is a string, not a number):&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR = '000742196','000012345'; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I need to use two databases to extract data under the POL_NBR; one database uses all nine characters, the other uses six characters (without the first leading zeros).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I'm trying to find a function that converts POL_NBR into&amp;nbsp;POL_NBR2 that would remove the three leading zeros and keep the remaining&amp;nbsp;numbers unchanged.&amp;nbsp;&lt;/FONT&gt;&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;Are they actually numbers? If so then just convert them both to numbers and compare those..&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select * 
from a
inner join b
on input(a.pol_nbr,32.) = input(b.pol_nbr2,32.)
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 May 2018 19:40:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462177#M29809</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-05-14T19:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462179#M29810</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;I have an existing global variable Pol_nbr - it is 9 characters long (it is a string, not a number):&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;POL_NBR = '000742196','000012345';&lt;/FONT&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually you don't. You have a macro variable that is 23 characters long.&lt;/P&gt;
&lt;P&gt;How did you create the macro variable?&lt;/P&gt;
&lt;P&gt;If you used SAS code to make it from the underlying data then change the process that makes it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select distinct input(pol_nbr,32.)
  into :number_list separate by ' '
  from table1
;
select * from table2
  where input(pol_nbr2,32.) in (&amp;amp;number_list)
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 May 2018 19:45:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462179#M29810</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-05-14T19:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462184#M29811</link>
      <description>&lt;P&gt;You probably don't need to convert them.&amp;nbsp; As macro variables, these strings would only be valuable for a comparison, such as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where policy_number in (&amp;amp;POL_NBR);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where policy_number in (&amp;amp;POL_NBR2);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that is really the way you intend to use them, you can leave the macro variables alone and convert the "other side" of the comparison:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where put(input(policy_number, 9.), z9.) in (&amp;amp;POL_NBR);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where put(input(policy_number, 9.), z6.) in (&amp;amp;POL_NBR2);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have some other use for these macro variables, show us what you intend to do with them.&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 20:19:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462184#M29811</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-05-14T20:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462232#M29813</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209962"&gt;@RENATA1&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have an existing global variable Pol_nbr - it is 9 characters long (it is a string, not a number):&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%LET&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; POL_NBR = '000742196','000012345'; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I need to use two databases to extract data under the POL_NBR; one database uses all nine characters, the other uses six characters (without the first leading zeros).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I'm trying to find a function that converts POL_NBR into&amp;nbsp;POL_NBR2 that would remove the three leading zeros and keep the remaining&amp;nbsp;numbers unchanged.&amp;nbsp;&lt;/FONT&gt;&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;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209962"&gt;@RENATA1&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;The following code should do the job.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%LET POL_NBR = '000742196','000012345';
%let pol_nbr2=%sysfunc(prxchange(s/\b0{3}//oi,-1,%nrbquote(&amp;amp;pol_nbr)));
%let pol_nbr2=%unquote(&amp;amp;pol_nbr2);
%put pol_nbr2=&amp;amp;pol_nbr2;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 May 2018 00:05:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462232#M29813</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-05-15T00:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: removing leading zeros function</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462308#M29822</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;soo much for all the recommendations. Patrick's code solved my problem! Thank you!!&lt;/P&gt;</description>
      <pubDate>Tue, 15 May 2018 11:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/removing-leading-zeros-function/m-p/462308#M29822</guid>
      <dc:creator>RENATA1</dc:creator>
      <dc:date>2018-05-15T11:43:55Z</dc:date>
    </item>
  </channel>
</rss>

