<?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 Reg: compressing specal characters in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33114#M6414</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;modifier C is even available in SAS9.1.3 &lt;/P&gt;&lt;P&gt;See the relevant documentation for that earlier release at &lt;A href="http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000212246.htm"&gt;http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000212246.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Oct 2011 11:45:15 GMT</pubDate>
    <dc:creator>Peter_C</dc:creator>
    <dc:date>2011-10-22T11:45:15Z</dc:date>
    <item>
      <title>Reg: compressing specal characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33111#M6411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can i compress special charaters in compress function not only the special charaters in the key board there are many special charcters that are coming in data any one can help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2011 09:43:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33111#M6411</guid>
      <dc:creator>sas_</dc:creator>
      <dc:date>2011-10-22T09:43:27Z</dc:date>
    </item>
    <item>
      <title>Reg: compressing specal characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33112#M6412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; which release of SAS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2011 11:39:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33112#M6412</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2011-10-22T11:39:30Z</dc:date>
    </item>
    <item>
      <title>Reg: compressing specal characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33113#M6413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; have you looked at the online doc for the Compress Function?&lt;/P&gt;&lt;P&gt;check modifier C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2011 11:42:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33113#M6413</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2011-10-22T11:42:23Z</dc:date>
    </item>
    <item>
      <title>Reg: compressing specal characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33114#M6414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;modifier C is even available in SAS9.1.3 &lt;/P&gt;&lt;P&gt;See the relevant documentation for that earlier release at &lt;A href="http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000212246.htm"&gt;http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000212246.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2011 11:45:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33114#M6414</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2011-10-22T11:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: compressing specal characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33115#M6415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the modifiers for the COMPRESS function.&amp;nbsp; I assume you want the W modifier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;clean=compress(raw,,'wk');&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also look at the COLLATE function to specify a range of values by code number.&lt;/P&gt;&lt;P&gt;For example to keep just the printable basic ASCII codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;clean=compress(raw,collate(32,127),'k')&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of if you have an old version of SAS where compress does not support the modifiers you can use compress twice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;clean=compress(raw,compress(raw,collate(32,127)));&lt;BR /&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Oct 2011 11:49:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33115#M6415</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2011-10-22T11:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: compressing specal characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33116#M6416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why?&lt;/P&gt;&lt;P&gt;It is because you can not open this table in SAS/EG ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2011 06:04:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33116#M6416</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-10-24T06:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: compressing specal characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33117#M6417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would help to know what your data really look like.&amp;nbsp; The following post shows to methods for seeing the hex representation of your data, one using SAS and one using a nice freeware tool ( &lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0905B&amp;amp;L=sas-l&amp;amp;P=R4105&amp;amp;D=1&amp;amp;H=0&amp;amp;O=D&amp;amp;T=1"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0905B&amp;amp;L=sas-l&amp;amp;P=R4105&amp;amp;D=1&amp;amp;H=0&amp;amp;O=D&amp;amp;T=1&lt;/A&gt; ) called hexmad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, what seems like unexplained characters, is actually a different kind of file that can easily be addressed if one knows the kind of file it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short, the Forum could probably advise you much better if they could see the hex representation of one or a couple of your data records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2011 13:30:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-compressing-specal-characters/m-p/33117#M6417</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-10-24T13:30:24Z</dc:date>
    </item>
  </channel>
</rss>

