<?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: strip in call execute doesn't work in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828708#M327362</link>
    <description>removing trim is the same. I initially only put strip. Thanks anyway.</description>
    <pubDate>Mon, 15 Aug 2022 16:14:48 GMT</pubDate>
    <dc:creator>Julie99999</dc:creator>
    <dc:date>2022-08-15T16:14:48Z</dc:date>
    <item>
      <title>strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828704#M327360</link>
      <description>&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one line of code like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;call execute('if cbsa_title ="'||trim(strip(cbsa_title))||'" then IND_COAST = '||strip(ind_coast)||' ;');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when SAS runs this code, it shows:&lt;/P&gt;&lt;P&gt;+ if cbsa_title ="PITTSBURGH PA PMSA&amp;nbsp; &amp;nbsp;" then IND_COAST = 0 ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see, the strip function in call execute doesn't work as it still contains trailing blanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried many times even adding another trim function and still doesn't work,&lt;/P&gt;&lt;P&gt;Anyone has any idea? Greatly appreciate it!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 15:59:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828704#M327360</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-15T15:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828705#M327361</link>
      <description>&lt;P&gt;Try removing the TRIM function and see what you get.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sometimes it is easier to control results of these multiple concatenations by creating a variable to hold a long string value and then use the variable as the argument for Call Execute.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 16:04:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828705#M327361</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-08-15T16:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828708#M327362</link>
      <description>removing trim is the same. I initially only put strip. Thanks anyway.</description>
      <pubDate>Mon, 15 Aug 2022 16:14:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828708#M327362</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-15T16:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828713#M327365</link>
      <description>&lt;P&gt;Those are not spaces then.&amp;nbsp; They are some other invisible character.&amp;nbsp; Use the $HEX. format to see what they are.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if cbsa_title =: 'PITTSBURGH' then put cbsa_title $hex. ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The most commn invisible characters are '09'x (TAB) , '0A'x (LINE FEED) , '0D'x (CARRIAGE RETURN) and 'A0'x (NON BREAKING SPACE).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do find that your values contain some invisible characters you need to figure how why and what is the right fix.&amp;nbsp; Do the values being compared by the generated code also include those characters?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not then try replacing them with spaces:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;cbsa_title = translate(cbsa_title,'    ','090A0DA0'x);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Why are you removing the leading spaces?&lt;/STRONG&gt;&amp;nbsp; If you ran the generated code against the same data as used to generate it then it would not match since, unlike trailing spaces, leading spaces are significant in comparisons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that removing the trailing spaces will not have any effect on the comparison being generated, &lt;STRONG&gt;it just makes the generated code shorter&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These two tests will generate the same answer since SAS ignores the trailing spaces when comparing strings.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;cbsa_title ="PITTSBURGH PA PMSA   "
cbsa_title ="PITTSBURGH PA PMSA"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try&amp;nbsp; using something like this.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call execute(catx(' ','if cbsa_title=',quote(trim(cbsa_title)),'then IND_COAST=',ind_coast,';'));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 16:31:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828713#M327365</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-08-15T16:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828757#M327391</link>
      <description>&lt;P&gt;thank you so much. I didn't know about invisible character before. I think like what you said, they're not space. I searched whole afternoon online trying to learn more about this special character.&lt;BR /&gt;I guess in my case, the special character is generated in data creation input step. I tried the code&lt;BR /&gt;cbsa_title = translate(cbsa_title,' ','090A0DA0'x);&lt;BR /&gt;you've listed. It didn't work in my case. Is it likely due to the fact that special characters in my case is not in '090A0DA0'x format?&lt;BR /&gt;These stuff are very new to me, I'm trying to digest.&lt;BR /&gt;I searched translate function online, didn't find much about what I can put in the third argument&lt;BR /&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/lefunctionsref/63354/HTML/default/viewer.htm#p05ww22zp7lcg3n1bjk7v93tscyo.htm" target="_blank" rel="noopener"&gt;https://support.sas.com/documentation/cdl/en/lefunctionsref/63354/HTML/default/viewer.htm#p05ww22zp7lcg3n1bjk7v93tscyo.htm&lt;/A&gt;&lt;BR /&gt;Thank you very much&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 21:07:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828757#M327391</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-15T21:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828764#M327394</link>
      <description>the output for "put cbsa_title $hex. ;" is as follows:&lt;BR /&gt;42455448455344412D524F434B56494C4C452D46524544455249434B2C204D44092020202020202020202020202020202020&lt;BR /&gt;I believe it's '09'x (TAB)</description>
      <pubDate>Mon, 15 Aug 2022 22:21:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828764#M327394</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-15T22:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828768#M327396</link>
      <description>&lt;P&gt;You could use a regular expression that translates all invisible characters to blanks.&lt;/P&gt;
&lt;PRE&gt;call execute('if cbsa_title ="'||trim(strip(cbsa_title))||'" then IND_COAST = '||strip(prxchange('s/\s/ /o',-1,strip(ind_coast)))||' ;');&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Aug 2022 23:10:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828768#M327396</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-08-15T23:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828771#M327397</link>
      <description>&lt;P&gt;That is definitely a TAB character.&lt;/P&gt;
&lt;PRE&gt;1    filename example temp;
2    data _null_;
3      file example;
4      put '42455448455344412D524F434B56494C4C452D46524544455249434B2C204D4409'x ;
5    run;

NOTE: The file EXAMPLE is:
      Filename=...\#LN00009,
      RECFM=V,LRECL=32767,File Size (bytes)=0,
      Last Modified=15Aug2022:19:20:51,
      Create Time=15Aug2022:19:20:51

NOTE: 1 record was written to the file EXAMPLE.
      The minimum record length was 33.
      The maximum record length was 33.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds


6    data _null_;
7     infile example;
8     input;
9     list;
10   run;

NOTE: The infile EXAMPLE is:
      Filename=...\#LN00009,
      RECFM=V,LRECL=32767,File Size (bytes)=35,
      Last Modified=15Aug2022:19:20:51,
      Create Time=15Aug2022:19:20:51

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0

1   CHAR  BETHESDA-ROCKVILLE-FREDERICK, MD. 33
    ZONE  445445442544454444245444544422440
    NUMR  25485341D2F3B69CC5D62545293BC0D49
NOTE: 1 record was read from the infile EXAMPLE.
      The minimum record length was 33.
      The maximum record length was 33.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
&lt;/PRE&gt;
&lt;P&gt;So converting the TAB to space should have made the generated code not have extra "spaces" before the closing quote.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But also note that there are hyphens instead of the spaces you posted before between the words.&amp;nbsp; Hyphens are another character that might not be what the look like.&amp;nbsp; Some strings that look like the have hyphens might actual have en-dash or em-dash characters instead.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 23:24:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828771#M327397</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-08-15T23:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828781#M327405</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/430421"&gt;@Julie99999&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Strip does work inside call execute.&lt;/STRONG&gt;&lt;BR /&gt;As a reminder &lt;STRONG&gt;Call Execute&lt;/STRONG&gt; generates a code that executes after the current data step.&lt;BR /&gt;Therefore the arguments to &lt;STRONG&gt;Call Execute&lt;/STRONG&gt; should generate a complete SAS code.&lt;/P&gt;
&lt;P&gt;The argument to &lt;STRONG&gt;Call Execute&lt;/STRONG&gt; as has been posted in this question does not result in a complete&amp;nbsp; data step code.&lt;BR /&gt;Further the instance of variable &lt;STRONG&gt;cbsa_title&lt;/STRONG&gt; following the &lt;STRONG&gt;"if"&lt;/STRONG&gt; is local to the code generated by &lt;STRONG&gt;call execute&lt;/STRONG&gt; and needs to be defined within the code forming the argument of the &lt;STRONG&gt;call execute.&lt;/STRONG&gt; Here this local value of &lt;STRONG&gt;cbsa_title&lt;/STRONG&gt; is being compared to value of &lt;STRONG&gt;cbsa_title&lt;/STRONG&gt; from outside the call execute.&lt;BR /&gt;I am giving a sample code below. I have used &lt;STRONG&gt;cbsa_title_local&lt;/STRONG&gt; and &lt;STRONG&gt;cbse_title_external&lt;/STRONG&gt; to&amp;nbsp; emphasize the the difference.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
IND_COAST="SOMETHING";
cbsa_title_external="PITTSBURGH PA PMSA   ";
call execute(
'data _null_;
cbsa_title_local="PITTSBURGH PA PMSA   ";
if cbsa_title_local ="'||strip(cbsa_title_external )|| '" then IND_COAST = "' ||strip(IND_COAST)||' ";
put IND_COAST=;
run;');
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The operative portion of the output from the log shows that strip function works and prints the expected value for IND_COAST.&lt;/P&gt;
&lt;PRE&gt; 
 NOTE: CALL EXECUTE generated line.
 1         + data _null_;cbsa_title_local="PITTSBURGH PA PMSA   ";if cbsa_title_local ="PITTSBURGH PA PMSA" then IND_COAST = 
 "SOMETHING ";put IND_COAST=;run;
 
 IND_COAST=SOMETHING&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 01:03:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/828781#M327405</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2022-08-16T01:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830114#M328007</link>
      <description>thanks for your reply. I didn't post my complete call execute code here, my call execute can run with no problem. The problem is hidden characters in the text string "PITTSBURGH PA PMSA ", which won't work for strip()</description>
      <pubDate>Wed, 24 Aug 2022 15:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830114#M328007</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-24T15:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830115#M328008</link>
      <description>thanks, I think using regular expression really solves the problem in one line of code. Can you please kindly help me understand what does this line of code work? prxchange('s/\s/ /o',-1,strip(ind_coast)))&lt;BR /&gt;I googled it but didn't help</description>
      <pubDate>Wed, 24 Aug 2022 15:46:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830115#M328008</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-24T15:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830118#M328011</link>
      <description>I understand \s means "Matches any white-space character." but what does s/ and /o mean?&lt;BR /&gt;In the regular expression you wrote, 's/\s/ /o', I get \s, but not s/   and / /o.&lt;BR /&gt;Any input is appreciated greatly</description>
      <pubDate>Wed, 24 Aug 2022 15:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830118#M328011</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-24T15:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830129#M328018</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/430421"&gt;@Julie99999&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I understand \s means "Matches any white-space character." but what does s/ and /o mean?&lt;BR /&gt;In the regular expression you wrote, 's/\s/ /o', I get \s, but not s/ and / /o.&lt;BR /&gt;Any input is appreciated greatly&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The general pattern for search and replace is&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;s/search string/replacement string/modifiers&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So in this case the search string is just the special symbol \s.&amp;nbsp; The replacement string is just a single space character.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the o modifier means repeat until no more matches are found, but I can no longer find any documentation on that.&lt;/P&gt;
&lt;P&gt;Normally what you see there instead is the i modifier which means to ignore the case of the letters when matching the search string (pattern).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 16:27:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830129#M328018</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-08-24T16:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830153#M328022</link>
      <description>&lt;P&gt;According to section &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lefunctionsref/n0r8h2fa8djqf1n1cnenrvm573br.htm#p05wib8a2b4vgjn1wbkbv1geylci" target="_blank" rel="noopener"&gt;Compiling a Perl Regular Expression&lt;/A&gt; in the PRXCHANGE documentation the &lt;FONT face="courier new,courier"&gt;/o&lt;/FONT&gt; option ("compile once") is redundant here because the&amp;nbsp;&lt;SPAN&gt;Perl regular expression is a constant (i.e., does not contain a variable).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 17:01:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830153#M328022</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2022-08-24T17:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830162#M328026</link>
      <description>Thank you so much, it helps hugely. I searched everywhere but couldn't find the answer. Your response is really helpful, I now understand that Perl regular expression</description>
      <pubDate>Wed, 24 Aug 2022 17:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830162#M328026</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-24T17:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830163#M328027</link>
      <description>thank you so much, the documentation you attached is really helpful. I learned a lot from it.</description>
      <pubDate>Wed, 24 Aug 2022 17:27:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830163#M328027</guid>
      <dc:creator>Julie99999</dc:creator>
      <dc:date>2022-08-24T17:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: strip in call execute doesn't work</title>
      <link>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830166#M328029</link>
      <description>&lt;P&gt;An alternative to:&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;cbsa_title = translate(cbsa_title,'    ','090A0DA0'x);&lt;/LI-CODE&gt;
&lt;P&gt;could be&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;cbsa_title = compress(cbsa_title, ,"S");&lt;/LI-CODE&gt;
&lt;P&gt;Doc:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_030/lefunctionsref/n0fcshr0ir3h73n1b845c4aq58hz.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_030/lefunctionsref/n0fcshr0ir3h73n1b845c4aq58hz.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 17:51:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/strip-in-call-execute-doesn-t-work/m-p/830166#M328029</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2022-08-24T17:51:08Z</dc:date>
    </item>
  </channel>
</rss>

