<?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: Why does SAS/Studio &amp;quot;eat&amp;quot; some of my output? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Why-does-SAS-Studio-quot-eat-quot-some-of-my-output/m-p/801599#M315481</link>
    <description>&lt;P&gt;HTML tags are enclosed in angular brackets. Browsers treat strings like yours as "a tag I do not understand" and discard them. This is a safety measure so that older browsers don't stumble over later tags.&lt;/P&gt;
&lt;P&gt;HTML compatible output should use &amp;amp;lt; and &amp;amp;gt; instead of the brackets.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Mar 2022 06:09:59 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2022-03-11T06:09:59Z</dc:date>
    <item>
      <title>Why does SAS/Studio "eat" some of my output?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-does-SAS-Studio-quot-eat-quot-some-of-my-output/m-p/801593#M315475</link>
      <description>&lt;P&gt;I was trying to see how UNICODEC() converted some UTF-8 characters into strings that I could transmit with 7-bit ASCII.&lt;/P&gt;
&lt;P&gt;When I looked at my PROC FREQ output in SAS Studio the version generated with the 'PAREN' style was gone or invisible.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-03-10 235009.jpg" style="width: 612px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69395i7C2AF9286563C24A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-03-10 235009.jpg" alt="Screenshot 2022-03-10 235009.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;But when I sent the same text to RTF, PDF, LISTING or LOG it is is visible.&lt;/P&gt;
&lt;PRE&gt; The FREQ Procedure
                                                                        Cumulative    Cumulative
 __hex__    __paren__    __esc__    __ncr__    Frequency     Percent     Frequency      Percent
 -----------------------------------------------------------------------------------------------
 E28099     &amp;lt;u2019&amp;gt;      \u2019     &amp;amp;#8217;           4       50.00             4        50.00  
 E289A4     &amp;lt;u2264&amp;gt;      \u2264     &amp;amp;#8804;           1       12.50             5        62.50  
 E289A5     &amp;lt;u2265&amp;gt;      \u2265     &amp;amp;#8805;           3       37.50             8       100.00  &lt;/PRE&gt;
&lt;P&gt;So why is the output window not showing the &amp;lt;u2019&amp;gt; strings?&lt;/P&gt;
&lt;P&gt;Is it because it thinks they are some type of HTML tag?&amp;nbsp; If so why?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this mean that any character string I try to print might be missing some characters if they just happen to have a &amp;lt; and &amp;gt; in that order?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps it is just the PROC FREQ output?&lt;BR /&gt;This code does not have the issue with the HTML output window that SAS/Studio uses.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test5;
  file print;
  length char paren $10 ;
  do char='E28099'x,'E289A4'x,'E289A5'x ;
     paren=unicodec(char,'paren');
     put char= paren= ;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Mar 2022 06:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-does-SAS-Studio-quot-eat-quot-some-of-my-output/m-p/801593#M315475</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-11T06:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why does SAS/Studio "eat" some of my output?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-does-SAS-Studio-quot-eat-quot-some-of-my-output/m-p/801599#M315481</link>
      <description>&lt;P&gt;HTML tags are enclosed in angular brackets. Browsers treat strings like yours as "a tag I do not understand" and discard them. This is a safety measure so that older browsers don't stumble over later tags.&lt;/P&gt;
&lt;P&gt;HTML compatible output should use &amp;amp;lt; and &amp;amp;gt; instead of the brackets.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 06:09:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-does-SAS-Studio-quot-eat-quot-some-of-my-output/m-p/801599#M315481</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-11T06:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Why does SAS/Studio "eat" some of my output?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-does-SAS-Studio-quot-eat-quot-some-of-my-output/m-p/801640#M315503</link>
      <description>&lt;P&gt;Yes. They are HTML tag . If you want display them , you need a special STYLE .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input (__hex__    __paren__    __esc__    __ncr__ ) (: $80.);
cards4;
 E28099     &amp;lt;u2019&amp;gt;      \u2019     &amp;amp;#8217;   
 E289A4     &amp;lt;u2264&amp;gt;      \u2264     &amp;amp;#8804;    
 E289A5     &amp;lt;u2265&amp;gt;      \u2265     &amp;amp;#8805; 
;;;;


proc report data=have nowd style(column)={protectspecialchars=yes} ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Mar 2022 11:48:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-does-SAS-Studio-quot-eat-quot-some-of-my-output/m-p/801640#M315503</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-03-11T11:48:23Z</dc:date>
    </item>
  </channel>
</rss>

