<?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 How to transform names in European native language into English names in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/251941#M47697</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am processing people names, and I find sometimes the names are in native language. For example, names are spelled like "&lt;EM&gt;André &lt;/EM&gt;" or "&lt;EM&gt;Martínez&lt;/EM&gt;". Currently I am manually tranforming such names into English one by one (e.g. "Andre" or "Martinez"), but there are so many names that I feel a little overwhelmed. I would really appreciate it if someone could kindly teach me a quicker way. Thank you very much in advance.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Feb 2016 01:53:23 GMT</pubDate>
    <dc:creator>dayuan</dc:creator>
    <dc:date>2016-02-24T01:53:23Z</dc:date>
    <item>
      <title>How to transform names in European native language into English names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/251941#M47697</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am processing people names, and I find sometimes the names are in native language. For example, names are spelled like "&lt;EM&gt;André &lt;/EM&gt;" or "&lt;EM&gt;Martínez&lt;/EM&gt;". Currently I am manually tranforming such names into English one by one (e.g. "Andre" or "Martinez"), but there are so many names that I feel a little overwhelmed. I would really appreciate it if someone could kindly teach me a quicker way. Thank you very much in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 01:53:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/251941#M47697</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-02-24T01:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to transform names in European native language into English names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/251946#M47699</link>
      <description>&lt;P&gt;If your problem is caused by different language encodings then this paper may help, in particular the conversion macro included:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/Multilingual_Computing_with_SAS_94.pdf" target="_blank" rel="nofollow"&gt;http://support.sas.com/resources/papers/Multilingu&lt;WBR /&gt;al_Computing_with_SAS_94.pdf&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 02:52:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/251946#M47699</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2016-02-24T02:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to transform names in European native language into English names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252005#M47725</link>
      <description>&lt;P&gt;Well, its a tricky one, as names could be anything. &amp;nbsp;My suggestion would be to create a coded list. &amp;nbsp;To do this, do a select distinct values of name from your dataset. &amp;nbsp;Then go through the distinct list and add in the decoded value, e.g.:&lt;/P&gt;
&lt;P&gt;CODE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DECODE&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;André &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Andre&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;Then simply use that coded list to replce the original. &amp;nbsp;I would imagine that you will need to do at least some manual review, I mean you could setup some programmatic conversions, but some will just be really random.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 10:23:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252005#M47725</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-02-24T10:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to transform names in European native language into English names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252011#M47727</link>
      <description>&lt;P&gt;Have a look at the &lt;A href="http://support.sas.com/documentation/cdl/en/nlsref/67964/HTML/default/viewer.htm#p078j5y1bbc9xfn1scp11kw3nmnt.htm" target="_blank"&gt;BASECHAR &lt;/A&gt;function, it might just do what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 11:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252011#M47727</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-02-24T11:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to transform names in European native language into English names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252078#M47752</link>
      <description>&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for the useful tip. In order to use the function of BASEDCHAR, should I install "National Language Support (NLS)" as an addition? Since currently the log suggests that "The function BASECHAR is unknown, or cannot be accessed"...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 16:24:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252078#M47752</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-02-24T16:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to transform names in European native language into English names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252132#M47781</link>
      <description>&lt;P&gt;Yes, you should install NLS.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 18:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-transform-names-in-European-native-language-into-English/m-p/252132#M47781</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-02-24T18:30:01Z</dc:date>
    </item>
  </channel>
</rss>

