<?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: Handling special characters in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208092#M7462</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLfjAAG"&gt;@srkalakonda&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had encountered a similiar&amp;nbsp;issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;make sure your source and target files are with the same encoding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use UTF-8 character&amp;nbsp;encoding this should not occur.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;
&lt;P&gt;Gatha&lt;/P&gt;</description>
    <pubDate>Mon, 22 May 2017 14:47:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-05-22T14:47:18Z</dc:date>
    <item>
      <title>Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208089#M7459</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to transform special characters like "á" . Whenever i read these characters and create a output file it shows "" . Please help how these characters can be handled and it should be loaded into the output. I am stuck badly with this .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Srinath&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 09:45:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208089#M7459</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T09:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208090#M7460</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Try using regex:&lt;/P&gt;
&lt;PRE&gt;row1.theStringYouWishToTransform.replaceAll("[^\\w]", "")&lt;/PRE&gt;
&lt;P&gt;Which means, replace any non-word characters (any character outside from&amp;nbsp;&lt;SPAN&gt;[a-zA-Z_0-9]).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it doesn't matches with your requirements, you can specifiy the characters to replaced bt yourself:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;row1.theStringYouWishToTransform.replaceAll("[àâäéèêëîïôöùûü]", "")&lt;/PRE&gt;
&lt;P&gt;Which means, replace these characters (àâäéèêëîïôöùûü) by nothing.&lt;/P&gt;
&lt;P&gt;You just have to complete the list of characters you want to remove.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:35:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208090#M7460</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-22T14:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208091#M7461</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;But my requirement is not to replace special character with empty string. It is to load the special characters to output file/table with same size as input file and data should not get trimmed.&lt;/P&gt;&lt;P&gt;In my case, it is populating special characters as empty string but I want to know how Talend handles special characters.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:41:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208091#M7461</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-22T14:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208092#M7462</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLfjAAG"&gt;@srkalakonda&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had encountered a similiar&amp;nbsp;issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;make sure your source and target files are with the same encoding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use UTF-8 character&amp;nbsp;encoding this should not occur.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;
&lt;P&gt;Gatha&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:47:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208092#M7462</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-22T14:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208093#M7463</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a similar issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was sending a message to a soap endpoint and&amp;nbsp;Köln was converted as K?ln. This issue didn't occur&amp;nbsp;from the studio but only when I scheduled the standalone job as a scheduled task.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how I fixed it:&amp;nbsp;&lt;A href="http://talendhowto.com/2017/09/02/add-encoding-batch-file/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://talendhowto.com/2017/09/02/add-encoding-batch-file/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2017 10:48:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208093#M7463</guid>
      <dc:creator>rsmits</dc:creator>
      <dc:date>2017-09-26T10:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208094#M7464</link>
      <description>&lt;P&gt;Usin utf-8 as encodin gpage will solve the problem and in case of latin characters to be existed u have to override the JVM parameters with utf parameter also.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2017 03:05:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208094#M7464</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-27T03:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208095#M7465</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please give details on how did you resolve it. I am still getting &lt;STRONG&gt;?&amp;nbsp;&lt;/STRONG&gt;mark if I get any &lt;FONT face="symbol" size="3"&gt;&lt;STRONG&gt;' mark&amp;nbsp;&lt;/STRONG&gt;in my excel source&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol" size="3"&gt;thanks&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol" size="3"&gt;Ravi&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 18:54:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208095#M7465</guid>
      <dc:creator>ravir</dc:creator>
      <dc:date>2017-10-22T18:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Handling special characters</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208096#M7466</link>
      <description>&lt;P&gt;been able to solve the problem by edit the *.bat file in a notepad and adding -Dfile.encoding=utf8 after the java word,it works. thanks a lot mate&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 08:30:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Handling-special-characters/m-p/2208096#M7466</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-22T08:30:09Z</dc:date>
    </item>
  </channel>
</rss>

