<?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: how to delete the punctuation mark in my rtf output? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/634319#M23876</link>
    <description>Hi @ Kurt, I  restart the question and list my exmple code here: &lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Update-the-style-for-the-table-using-style-journal3-to-avoid-the/m-p/634317#M23875" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Update-the-style-for-the-table-using-style-journal3-to-avoid-the/m-p/634317#M23875&lt;/A&gt;</description>
    <pubDate>Tue, 24 Mar 2020 01:47:58 GMT</pubDate>
    <dc:creator>blueskyxyz</dc:creator>
    <dc:date>2020-03-24T01:47:58Z</dc:date>
    <item>
      <title>how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/632910#M23850</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;                                                                
   define style global.table;                
      parent = styles.journal;                                                
      style fonts from fonts /                                                
         'TitleFont' = ("Times New Roman")                             
         'headingFont' = ("Times New Roman")                           
         'docFont' = ("Times New Roman")                               
         'FootFont' = ("Times New Roman")
         ;                             
      style SystemTitle from SystemTitle /                                 
         backgroundcolor = none
         fontsize= 10 pt
         fontweight=bold
         ;                                              
      style SystemFooter from SystemFooter /                                
         backgroundcolor = none
         fontsize= 9 pt
         fontweight=medium
		 fontstyle=italic
         ;                                                  
      style Header from Header /                                           
         backgroundcolor = none
         fontsize= 10 pt
         fontweight=medium
		 cellspacing=0
         vjust=b
          pretext = "~R/RTF'\sb0\sa0\ "
         ;  
      style RowHeader from RowHeader /                                        
         backgroundcolor = none
         ;                                              
      style Data from Data /                                                 
         backgroundcolor = none
         font = ("Times New Roman", 9 pt, medium)
         fontweight=medium
          pretext = "~R/RTF'\sb0\sa0\ "
         ;                                             
      style Table from Table / 
         font = ("Times New Roman", 9 pt, medium)
         backgroundcolor = none
         frame = void
         rules = none
         ;
      style Body from Body /                                             
         bottommargin = 1.0 in
         topmargin = 1.0 in
         rightmargin = 1.0 in
         leftmargin  = 1.0 in
         ;   
 
   end;                                                                       
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;~R'\fi-86\li86 'Race, n (%)&lt;/P&gt;
&lt;P&gt;~R'\fi-86\li266 'White&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="捕获.JPG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36969i9231ED28130F9C6D/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.JPG" alt="捕获.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 10:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/632910#M23850</guid>
      <dc:creator>blueskyxyz</dc:creator>
      <dc:date>2020-03-18T10:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/632913#M23851</link>
      <description>&lt;P&gt;In order to assist you, we need the data and the reports code used to create the output.&lt;/P&gt;
&lt;P&gt;Please post the data as self-contained data step with datalines.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 11:19:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/632913#M23851</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-03-18T11:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633056#M23853</link>
      <description>Hi:&lt;BR /&gt;  Just seeing your style template isn't enough. You also have to ensure that you have the SAME character defined as the ODS ESCAPECHAR or else use the "universal" ESCAPECHAR so that your inline formatting is recognized. This looks like a standard demographic report. You do NOT need to use RTF control strings to do your indents and formatting. Please take a look at both of the #1 examples in this paper, &lt;A href="https://support.sas.com/resources/papers/proceedings/pdfs/sgf2008/173-2008.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/pdfs/sgf2008/173-2008.pdf&lt;/A&gt; starting on page 9 -- everything was done with PROC REPORT and JOURNAL style -- no raw text insertion was needed. There have been previous forum postings of the paper and zip file of programs. They are both on support.sas.com under the 2008 papers.&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 18 Mar 2020 19:23:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633056#M23853</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-03-18T19:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633160#M23857</link>
      <description>&lt;P&gt;Sorry, Kurt, I cannot&amp;nbsp;share my code here, if I delete the option keepn, the result is different with symbol on title and footnote line:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="捕获.JPG" style="width: 595px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37023iF832AAC79EC1384B/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.JPG" alt="捕获.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Mar 2020 04:17:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633160#M23857</guid>
      <dc:creator>blueskyxyz</dc:creator>
      <dc:date>2020-03-19T04:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633162#M23858</link>
      <description>Thanks Cynthia for sharing your paper, I use the regular ESCAPECHAR like ^ ~, I'm confused with my issue.&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Mar 2020 04:19:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633162#M23858</guid>
      <dc:creator>blueskyxyz</dc:creator>
      <dc:date>2020-03-19T04:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633167#M23859</link>
      <description>the code is ok in UNIX system, while the rtf ouput shows some symbols  in WIN10, there are some options need to update.</description>
      <pubDate>Thu, 19 Mar 2020 04:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/633167#M23859</guid>
      <dc:creator>blueskyxyz</dc:creator>
      <dc:date>2020-03-19T04:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/634319#M23876</link>
      <description>Hi @ Kurt, I  restart the question and list my exmple code here: &lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/Update-the-style-for-the-table-using-style-journal3-to-avoid-the/m-p/634317#M23875" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/Update-the-style-for-the-table-using-style-journal3-to-avoid-the/m-p/634317#M23875&lt;/A&gt;</description>
      <pubDate>Tue, 24 Mar 2020 01:47:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/634319#M23876</guid>
      <dc:creator>blueskyxyz</dc:creator>
      <dc:date>2020-03-24T01:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/634417#M23879</link>
      <description>&lt;P&gt;It looks to me in the screen shot that I can see the carriage returns at the end of each line. I am wondering whether Show/Hide characters on the Word ribbon is toggled on. Otherwise, if that doesn't work, I'd recommend opening a track with Tech Support.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 12:49:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/634417#M23879</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-03-24T12:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete the punctuation mark in my rtf output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/634954#M23891</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt; , update the word display option , this kind of symbol can be hided.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="捕获.JPG" style="width: 691px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37381iAA1F3231A2E8783E/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.JPG" alt="捕获.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 03:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/how-to-delete-the-punctuation-mark-in-my-rtf-output/m-p/634954#M23891</guid>
      <dc:creator>blueskyxyz</dc:creator>
      <dc:date>2020-03-26T03:39:32Z</dc:date>
    </item>
  </channel>
</rss>

