<?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: need to insert a space when joining two variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417530#M102568</link>
    <description>thx.  i should have checked my log!  i need more coffee.&lt;BR /&gt;</description>
    <pubDate>Thu, 30 Nov 2017 19:35:16 GMT</pubDate>
    <dc:creator>jenim514</dc:creator>
    <dc:date>2017-11-30T19:35:16Z</dc:date>
    <item>
      <title>need to insert a space when joining two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417521#M102564</link>
      <description>&lt;P&gt;I just need a space!&amp;nbsp; But i'm not getting one &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;_1=strip(put(mean, 8.1)) ||&amp;nbsp; " (" || strip(put(std, 10.2)) || ")");&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so output should look like:&amp;nbsp;&amp;nbsp;64.0 (11.00) .&amp;nbsp; But i'm getting&amp;nbsp;64.0(11.00)&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 19:01:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417521#M102564</guid>
      <dc:creator>jenim514</dc:creator>
      <dc:date>2017-11-30T19:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: need to insert a space when joining two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417526#M102565</link>
      <description>&lt;P&gt;Well, it's not possible to test your code since it doesn't work.&amp;nbsp; But if you were to remove the extra closing parenthesis at the end, it gives the result you are asking for.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 19:21:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417526#M102565</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-11-30T19:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: need to insert a space when joining two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417530#M102568</link>
      <description>thx.  i should have checked my log!  i need more coffee.&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Nov 2017 19:35:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417530#M102568</guid>
      <dc:creator>jenim514</dc:creator>
      <dc:date>2017-11-30T19:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: need to insert a space when joining two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417593#M102585</link>
      <description>&lt;P&gt;You should investigate the CAT, CATT, CATS and CATX functions as well. Then you don't need all the strip function calls&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data example;
   mean= 64;
   std = 11;
   _1 = catx(' ',put(mean,8.1),cats('(',put(std,10.2),')') );
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Nov 2017 22:12:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/need-to-insert-a-space-when-joining-two-variables/m-p/417593#M102585</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-11-30T22:12:30Z</dc:date>
    </item>
  </channel>
</rss>

