<?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: ods html text=&amp;quot;&amp;quot;; how to put a tab or several blanks? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ods-html-text-quot-quot-how-to-put-a-tab-or-several-blanks/m-p/113295#M259159</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Barbier:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had the same problem a while ago - it seems that there is no way to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I even tried to make a table and put each block of text into different columns, but that didn't work either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tech Support told me that "you can't get there from here".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We wound up separating text with obscure characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I can;'t be of more help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Sep 2012 14:44:14 GMT</pubDate>
    <dc:creator>OS2Rules</dc:creator>
    <dc:date>2012-09-06T14:44:14Z</dc:date>
    <item>
      <title>ods html text=""; how to put a tab or several blanks?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-html-text-quot-quot-how-to-put-a-tab-or-several-blanks/m-p/113294#M259158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I use a webout file as output for a stored process, I use ods html text="bla bla bla" to write some information in my output file.&lt;/P&gt;&lt;P&gt;I found out that I can use ^n to go to the next line:&lt;/P&gt;&lt;P&gt;ods html text="bla bla ^n bla"&lt;/P&gt;&lt;P&gt;results in&lt;/P&gt;&lt;P&gt;bla bla&lt;/P&gt;&lt;P&gt;bla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there something alike for a tab or for several spaces?&lt;/P&gt;&lt;P&gt;I would like to have this result:&lt;/P&gt;&lt;P&gt;bla bla&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;many thanks!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 14:17:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-html-text-quot-quot-how-to-put-a-tab-or-several-blanks/m-p/113294#M259158</guid>
      <dc:creator>barbier</dc:creator>
      <dc:date>2012-09-06T14:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: ods html text=""; how to put a tab or several blanks?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-html-text-quot-quot-how-to-put-a-tab-or-several-blanks/m-p/113295#M259159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Barbier:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had the same problem a while ago - it seems that there is no way to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I even tried to make a table and put each block of text into different columns, but that didn't work either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tech Support told me that "you can't get there from here".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We wound up separating text with obscure characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I can;'t be of more help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 14:44:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-html-text-quot-quot-how-to-put-a-tab-or-several-blanks/m-p/113295#M259159</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2012-09-06T14:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: ods html text=""; how to put a tab or several blanks?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ods-html-text-quot-quot-how-to-put-a-tab-or-several-blanks/m-p/113296#M259160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look up the ODS ESCAPECHAR statement. But is dependent on version of SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Their are a number of&amp;nbsp; functions that allow manipulation of text that you might need. In your case it is likely to be NBSPACE function.&lt;/P&gt;&lt;P&gt;ODS ESCAPECHAR='^'; /* declare the character to use as escape once */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods html text "bla bla ^{NBSPACE 3} bla"; /* to insert 3 spaces */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 14:45:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ods-html-text-quot-quot-how-to-put-a-tab-or-several-blanks/m-p/113296#M259160</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-09-06T14:45:04Z</dc:date>
    </item>
  </channel>
</rss>

