<?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: Hex Format in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878556#M347112</link>
    <description>It doesn't remove every single special character - you need to explicitly list the ones you want removed. From your sample data it's the two shown. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 31 May 2023 19:32:11 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2023-05-31T19:32:11Z</dc:date>
    <item>
      <title>Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878467#M347072</link>
      <description>&lt;P&gt;I've used the format $hex50. to identify any special characters or invisible characters in the string. Value for the string is coming from .xls. Assume string value is "Urology". When I executed the program with $hex50. with the value&amp;nbsp;"Urology", I got following message in the log. How to interpret this code to see if/what special characters in the string?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;55726F6C6F67790D0A0D0A&lt;/PRE&gt;
&lt;P&gt;Following code is removing the spaces between the strings. I want to remove special characters (spaces, CR, LF) before and after the string and NOT between the strings&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;compress(string,'090A0C0D20A0'x))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 18:23:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878467#M347072</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-05-31T18:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878479#M347077</link>
      <description>&lt;P&gt;Look up the ASCII codes.&amp;nbsp; Or just play around yourself with the using the $HEX format on single characters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have :&lt;/P&gt;
&lt;P&gt;55&lt;/P&gt;
&lt;P&gt;72&lt;/P&gt;
&lt;P&gt;6F&lt;/P&gt;
&lt;P&gt;6C&lt;/P&gt;
&lt;P&gt;6F&lt;/P&gt;
&lt;P&gt;67&lt;/P&gt;
&lt;P&gt;79&lt;/P&gt;
&lt;P&gt;0D&lt;/P&gt;
&lt;P&gt;0A&lt;/P&gt;
&lt;P&gt;0D&lt;/P&gt;
&lt;P&gt;0A&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The last four are two pairs of Carriage Return and Line Feed characters.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You probably do NOT want those in your actual text data.&amp;nbsp; You could use COMPRESS() to remove them&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;string = compress(string,'0A0D'x);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or perhaps use TRANSLATE() to replace them with spaces&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;string = translate(string,'  ','0A0D'x);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 May 2023 15:59:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878479#M347077</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-05-31T15:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878495#M347084</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;Thank you for the information. I want to remove the special characters&amp;nbsp; (spaces, CR, LF) before and after the string and NOT between the string. Currently following line is removing the spaces between the string which I don't want to do.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;compress(string,'090A0C0D20A0'x))&lt;/PRE&gt;
&lt;P&gt;E.g. If the string is 'Banking and Insurance' and I don't want to make it as&amp;nbsp; 'BankingandInsurance'&amp;nbsp; by removing the spaces between the string.&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 17:25:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878495#M347084</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-05-31T17:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878524#M347098</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;I want to remove the special characters&amp;nbsp; (spaces, CR, LF) before and after the string and NOT between the string. Currently following line is removing the spaces between the string which I don't want to do.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;compress(string,'090A0C0D20A0'x))&lt;/PRE&gt;
&lt;P&gt;E.g. If the string is 'Banking and Insurance' and I don't want to make it as&amp;nbsp; 'BankingandInsurance'&amp;nbsp; by removing the spaces between the string.&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 18:26:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878524#M347098</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-05-31T18:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878534#M347103</link>
      <description>I believe 20 is the typical space characters. Why did you add all the whitespace characters to your remove list?</description>
      <pubDate>Wed, 31 May 2023 18:59:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878534#M347103</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-05-31T18:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878536#M347104</link>
      <description>I'm not certain how to remove white spaces and special characters before&lt;BR /&gt;and after the strings. Any help?&lt;BR /&gt;</description>
      <pubDate>Wed, 31 May 2023 19:02:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878536#M347104</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-05-31T19:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878540#M347107</link>
      <description>Assuming trim/strip have failed?</description>
      <pubDate>Wed, 31 May 2023 19:05:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878540#M347107</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-05-31T19:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878545#M347108</link>
      <description>Right, trim has failed and hence I moved to compress.&lt;BR /&gt;</description>
      <pubDate>Wed, 31 May 2023 19:11:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878545#M347108</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-05-31T19:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878548#M347109</link>
      <description>&lt;P&gt;SAS automatically addes 20 (spaces to fill out a length of the variable) so that's fine, but otherwise, COMPRESS() seems to work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; &lt;BR /&gt;data have;&lt;BR /&gt;input value $hex50.;&lt;BR /&gt;format value $hex50.;&lt;BR /&gt;cards;&lt;BR /&gt;55726F6C6F67790D0A0D0A&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc print data=have;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=have;&lt;BR /&gt;format value $50.;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data want;&lt;BR /&gt;set have;&lt;BR /&gt;value2=strip(value);&lt;BR /&gt;value3=trim(value);&lt;BR /&gt;value4 = compress(value, '0D0A'x);&lt;BR /&gt;&lt;BR /&gt;format value2 value3 value4 $hex50.;&lt;BR /&gt;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc print data=want;&lt;BR /&gt;run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 May 2023 19:15:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878548#M347109</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-05-31T19:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878550#M347110</link>
      <description>Thank you for the instruction. Whether 0D0A in compress function removes&lt;BR /&gt;special/invisible characters as well along with whitespaces before and&lt;BR /&gt;after the strings?&lt;BR /&gt;</description>
      <pubDate>Wed, 31 May 2023 19:21:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878550#M347110</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-05-31T19:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878554#M347111</link>
      <description>It does, you should only see 20 after the string in the variable value4. SAS always add extra spaces to pad out to the length of the variable from your example.</description>
      <pubDate>Wed, 31 May 2023 19:26:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878554#M347111</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-05-31T19:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878556#M347112</link>
      <description>It doesn't remove every single special character - you need to explicitly list the ones you want removed. From your sample data it's the two shown. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 31 May 2023 19:32:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878556#M347112</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-05-31T19:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878557#M347113</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;I want to remove the special characters&amp;nbsp; (spaces, CR, LF) before and after the string and NOT between the string. Currently following line is removing the spaces between the string which I don't want to do.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;compress(string,'090A0C0D20A0'x))&lt;/PRE&gt;
&lt;P&gt;E.g. If the string is 'Banking and Insurance' and I don't want to make it as&amp;nbsp; 'BankingandInsurance'&amp;nbsp; by removing the spaces between the string.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you don't want to remove the spaces then take the 20 out of your COMPRESS() function all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usually I use translate to replace the goofy characters with spaces and use COMPBL() to reduce them to one per break.&amp;nbsp; You can use LEFT() to remove the leading spaces.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;left(compbl(translate(string,' ','090A0C0DA0'x)))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;No need to use TRIM() , or STRIP(), to remove the trialing spaces because they will just get added back when you store the result into a variable.&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 19:33:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878557#M347113</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-05-31T19:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878558#M347114</link>
      <description>I want to remove all the special/invisible characters including spaces&lt;BR /&gt;before and after the string and NOT between the string.&lt;BR /&gt;</description>
      <pubDate>Wed, 31 May 2023 19:38:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878558#M347114</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-05-31T19:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878560#M347115</link>
      <description>What's a special character? Hyphen? Exclamation mark? This is why you need to list the characters of interest.</description>
      <pubDate>Wed, 31 May 2023 19:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878560#M347115</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-05-31T19:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878579#M347120</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I want to remove all the special/invisible characters including spaces&lt;BR /&gt;before and after the string and NOT between the string.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you want to use COMPRESS() to remove characters you have to tell it exactly what characters to remove.&amp;nbsp; So if you don't want it to remove spaces then don't tell it to remove them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is easier you can use the K modifier and instead tell it which characters to keep.&amp;nbsp; For example if you only want to keep the normal ASCII characters just use something like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;new_string = compress(old_string,collate(32,126),'k');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;32 is 20 in hex which is a space.&amp;nbsp; 126 is 7E in hex which is a ~.&amp;nbsp; All of the chracters from space to ~ are in printable standard 7-bit ASCII characters. Everything else is either a control character like CR or LF or some strange non-ASCII character like accented letters or strange symbols.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are having trouble figuring out what characters you have that is what the $HEX format can help with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The STRIP() function will remove leading and trailing SPACES.&amp;nbsp; It does not remove any other characters.&amp;nbsp; As I explained before there is no need to remove the trailing spaces since they just come back when you assign the value to a variable. SAS uses FIXED LENGTH character variables.&amp;nbsp; So they are always padded with spaces to fill the full storage length.&amp;nbsp; So LEFT() is enough to remove the leading spaces.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure what you mean by "between strings".&amp;nbsp; To you mean between the words in the current character variable?&amp;nbsp; That is why I suggested using the COMPBL() function.&amp;nbsp; That will collapse multiple adjacent spaces into one space, but does not remove the space between the words.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or are you planning to combine a series of character variables together?&amp;nbsp; If so then explain how you are going to combine them to help on preventing extra spaces being inserted.&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 21:58:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878579#M347120</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-05-31T21:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878609#M347137</link>
      <description>&lt;P&gt;Do not use "20"x in the COMPRESS(); remove leading and trailing blanks with STRIP().&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 06:17:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878609#M347137</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-06-01T06:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878625#M347147</link>
      <description>&lt;P&gt;If you want to delete leading and trailing spaces('20'x) and "enters" (LF, CR) you could try to "&lt;EM&gt;resolve&lt;/EM&gt;" it his way&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
  x='0A20200D55722055720D0A6F6C6F67790D0A20200D0A0D0A0D0A0D0A'x;
  put "*" x= char. +(-1)'*';
  put "*" x= hex. +(-1)'*';

  s=FINDC(x,, 1,'KS'); /* first "non space" */
  e=FINDC(x,,-vlength(x),'KS'); /* last "non space" */
  put s= e=;

  x=substr(x,s,e-s);
  put "*" x= char. +(-1)'*';
  put "*" x= hex. +(-1)'*';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 09:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878625#M347147</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-06-01T09:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878633#M347152</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35763"&gt;@yabwon&lt;/a&gt;&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class="ui-provider gv b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak"&gt;I want to delete CR, LF and Spaces or any special characters before and after the string. Then how to tweak your code?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 10:10:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878633#M347152</guid>
      <dc:creator>David_Billa</dc:creator>
      <dc:date>2023-06-01T10:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hex Format</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878634#M347153</link>
      <description>&lt;P&gt;Define "&lt;SPAN&gt;special characters&lt;/SPAN&gt;" ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The answer will probably be: change FINDC() functions modifiers.&lt;/P&gt;
&lt;P&gt;Basically "SK" means "search for first character that is NOT a space, a horizontal tab, a vertical tab, a carriage return, a line feed, and a form feed".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Probably you would like to add "C" for&amp;nbsp;control characters, so in total "SCK".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or maybe just make it: "ANP" to search for first&amp;nbsp; alphabetic character,&amp;nbsp;punctuation mark, or&amp;nbsp;digits, an underscore, and English letter?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P.S. are you using two accounts:&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292396"&gt;@David_Billa&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/8409"&gt;@Babloo&lt;/a&gt;&amp;nbsp;?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 10:17:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hex-Format/m-p/878634#M347153</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-06-01T10:17:49Z</dc:date>
    </item>
  </channel>
</rss>

