<?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: Are there other single character ODS escape sequences besides ^n ? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946015#M26769</link>
    <description>&lt;P&gt;no, sorry Tom, you misunderstood me.&amp;nbsp; I know how to change the default '^' to whatever I want it to be.&amp;nbsp; My question is about the 'n' which follows the escape character, which is what results in the new line.&amp;nbsp; Are there other commands besides this 'n'? Are where is it (or where are they) documented.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Donna&lt;/P&gt;</description>
    <pubDate>Wed, 02 Oct 2024 20:33:47 GMT</pubDate>
    <dc:creator>ddutton325</dc:creator>
    <dc:date>2024-10-02T20:33:47Z</dc:date>
    <item>
      <title>Are there other single character ODS escape sequences besides ^n ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946013#M26767</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;I have search high and low in the Doc and cannot find anything about using the ODS Escapecharacter in strings followed by a single character, instead of one of the escapecharacter functions inside {---}.&amp;nbsp; And yet, I know that ^n (or whatever escape character you are using) works to give a new line, just as ^{newline} would.&amp;nbsp; &amp;nbsp;Are there any other single characters that can be used in such a way, and if so, where are they documented?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Donna&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 20:26:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946013#M26767</guid>
      <dc:creator>ddutton325</dc:creator>
      <dc:date>2024-10-02T20:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Are there other single character ODS escape sequences besides ^n ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946014#M26768</link>
      <description>&lt;P&gt;You can use almost any character you want.&amp;nbsp; Just tell SAS which one you want to use with the ODS ESCAPECHAR statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p11xia2ltavr8ln17srq8vn4rnqc.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p11xia2ltavr8ln17srq8vn4rnqc.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 20:29:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946014#M26768</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-10-02T20:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Are there other single character ODS escape sequences besides ^n ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946015#M26769</link>
      <description>&lt;P&gt;no, sorry Tom, you misunderstood me.&amp;nbsp; I know how to change the default '^' to whatever I want it to be.&amp;nbsp; My question is about the 'n' which follows the escape character, which is what results in the new line.&amp;nbsp; Are there other commands besides this 'n'? Are where is it (or where are they) documented.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Donna&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 20:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946015#M26769</guid>
      <dc:creator>ddutton325</dc:creator>
      <dc:date>2024-10-02T20:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Are there other single character ODS escape sequences besides ^n ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946026#M26770</link>
      <description>&lt;P&gt;Not sure.&amp;nbsp; There used to be some cheat sheets for ODS, perhaps something is written there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try running an experiment.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
 length code 8 char $1 odschar $2 ;
 format code hex2. ;
 do code = rank(' ') to rank('~');
   char = byte(code);
   odschar= '^'||char;
   output;
 end;
run;
ods escapechar='^';
proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Looks to me like it did something strange with: hyphen, 0 to 9, P, underscore, a, h, m, n, p, w and z.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 21:53:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946026#M26770</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-10-02T21:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Are there other single character ODS escape sequences besides ^n ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946042#M26771</link>
      <description>Hi:&lt;BR /&gt;  The single character ESCAPECHAR that you mention was used for a LINEFEED or RETURN in the version of ODS prior to SAS 9.2. The older version of syntax is not guaranteed to work in all the destinations. &lt;BR /&gt;  If you look for some of the older user group papers on ODS ESCAPECHAR, including my old 2007 paper  "Funny ^Stuff~ in My Code",  &lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf&lt;/A&gt; you can see some of the original syntax. But even back then, I showed the newer syntax that was on the way with SAS 9.2. However, just be aware of the fact that the new "function" style of ODS ESCAPECHAR replaced that original style.&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 02 Oct 2024 23:34:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946042#M26771</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2024-10-02T23:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Are there other single character ODS escape sequences besides ^n ?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946559#M26772</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;Thanks so much Cynthia!&amp;nbsp; That explains why I couldn't find it in the documentation.&amp;nbsp; I shall spread the word that we should modernize our code to use the current function-style syntax.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 07 Oct 2024 16:38:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Are-there-other-single-character-ODS-escape-sequences-besides-n/m-p/946559#M26772</guid>
      <dc:creator>ddutton325</dc:creator>
      <dc:date>2024-10-07T16:38:27Z</dc:date>
    </item>
  </channel>
</rss>

