<?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: Reading an EBCDIC file and arobas is converted to a instead of a @ the email field in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Reading-an-EBCDIC-file-and-arobas-is-converted-to-a-instead-of-a/m-p/761521#M39311</link>
    <description>&lt;P&gt;If you want a solution then please post the code that is causing the problem in the first place.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Aug 2021 23:33:12 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2021-08-13T23:33:12Z</dc:date>
    <item>
      <title>Reading an EBCDIC file and arobas is converted to a instead of a @ the email field</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Reading-an-EBCDIC-file-and-arobas-is-converted-to-a-instead-of-a/m-p/761447#M39299</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am doing a proc compare and for some reason, I don't know , one of the field : client_email value&lt;/P&gt;
&lt;P&gt;are converted to the second value instead of the first value.&amp;nbsp;&amp;nbsp;@ is converted into à&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a simple way to avoid that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV id="IDX2"&gt;
&lt;PRE class="batch"&gt;66  ||  IRDENNIS@ICLOUD.COM   IRDENNISàICLOUD.COM &lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 13 Aug 2021 15:23:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Reading-an-EBCDIC-file-and-arobas-is-converted-to-a-instead-of-a/m-p/761447#M39299</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2021-08-13T15:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reading an EBCDIC file and arobas is converted to a instead of a @ the email field</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Reading-an-EBCDIC-file-and-arobas-is-converted-to-a-instead-of-a/m-p/761495#M39307</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;one of the field : client_email value&lt;/P&gt;
&lt;P&gt;are converted to the second value instead of the first value.&amp;nbsp;&amp;nbsp;@ is converted into à&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a simple way to avoid that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV id="IDX2"&gt;
&lt;PRE class="batch"&gt;66  ||  IRDENNIS@ICLOUD.COM   IRDENNISàICLOUD.COM &lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Is the same issue as on your other post?&amp;nbsp; Is this from EBCDIC?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a quick work-around, you could do the below,&amp;nbsp;&lt;STRONG&gt;but&lt;/STRONG&gt; if there are other&amp;nbsp;à characters in the data, this will not work.&amp;nbsp; For example, and email address of Thomas_à_Kempisàemail.com would not work with this quick work-around.&amp;nbsp; You would have to examine your data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA	Have;
	INPUT	Email_Address	:	$64.;
DATALINES;
IRDENNISàICLOUD.COM
;
RUN;	

DATA	Want;
	SET	Have;
	Email_Address	=	TRANSLATE(Email_Address,'@','à');
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 20:02:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Reading-an-EBCDIC-file-and-arobas-is-converted-to-a-instead-of-a/m-p/761495#M39307</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2021-08-13T20:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reading an EBCDIC file and arobas is converted to a instead of a @ the email field</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Reading-an-EBCDIC-file-and-arobas-is-converted-to-a-instead-of-a/m-p/761521#M39311</link>
      <description>&lt;P&gt;If you want a solution then please post the code that is causing the problem in the first place.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 23:33:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Reading-an-EBCDIC-file-and-arobas-is-converted-to-a-instead-of-a/m-p/761521#M39311</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-08-13T23:33:12Z</dc:date>
    </item>
  </channel>
</rss>

