<?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: Clean accented character and white space in column in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242831#M29525</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please provide some sample data and expected output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
    <pubDate>Tue, 02 May 2017 12:33:44 GMT</pubDate>
    <dc:creator>vboppudi</dc:creator>
    <dc:date>2017-05-02T12:33:44Z</dc:date>
    <item>
      <title>Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242830#M29524</link>
      <description>&lt;P&gt;I have a workflow as follows. In the column 'summary', i want to remove&lt;/P&gt; 
&lt;P&gt;1. question mark(?)&lt;BR /&gt;2. white space from the text&lt;BR /&gt;3. replace accented alphabets with the english equivalent. For example é into e.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 688px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtrX.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134729i25148F14D4B5C07A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtrX.jpg" alt="0683p000009LtrX.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Input&lt;/P&gt; 
&lt;PRE&gt;?? at Shenzhen Xingjiexun Electronics Co.Ltd
Designer at FabUnion | ????????
Jinanhaolu Ñ manager&lt;/PRE&gt; 
&lt;P&gt;Output&lt;/P&gt; 
&lt;PRE&gt;at Shenzhen Xingjiexun Electronics Co.Ltd
Designer at FabUnion |
Jinanhaolu N manager&lt;/PRE&gt; 
&lt;P&gt;For the accented alphabet, above is just a sample as it can be anything and i do not have a finite list to produce for an example.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks in advance!!&lt;/P&gt; 
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 11:27:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242830#M29524</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-02T11:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242831#M29525</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please provide some sample data and expected output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 12:33:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242831#M29525</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2017-05-02T12:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242832#M29526</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;Here is an example of howto:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LrmO.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151035i9B9BDFB4A73880F7/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LrmO.png" alt="0683p000009LrmO.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;1st, load the commons-lang3-3.4.jar file and&amp;nbsp;import org.apache.commons.lang3.StringUtils.&lt;/P&gt; 
&lt;P&gt;For that, in tLibraryLoad Basic settings select "&lt;SPAN&gt;commons-lang3-3.4.jar", then in Advanced setting enter&amp;nbsp;import "org.apache.commons.lang3.StringUtils;" in the import field.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;In tJavaRow, enter the following (maybe something similar in tMap depending on your use case):&lt;/SPAN&gt;&lt;/P&gt; 
&lt;PRE&gt;output_row.line = StringUtils.stripAccents(input_row.line);&lt;/PRE&gt; 
&lt;P&gt;&lt;SPAN&gt;tFixedFlowInput is here to generate data for the flow ("aaaéééàààçççbbbb" for my example), and the result is:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;PRE&gt;aaaeeeaaacccbbbb&lt;/PRE&gt; 
&lt;P&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 12:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242832#M29526</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T12:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242833#M29527</link>
      <description>&lt;P&gt;Sorry, I forgot "?" and space.&lt;/P&gt;&lt;P&gt;Just replace:&lt;/P&gt;&lt;PRE&gt;output_row.line = StringUtils.stripAccents(input_row.line);&lt;/PRE&gt;&lt;P&gt;with:&lt;/P&gt;&lt;PRE&gt;output_row.line = StringUtils.stripAccents(input_row.line).replaceAll("[? ]", "");&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 12:39:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242833#M29527</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T12:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242834#M29528</link>
      <description>&lt;P&gt;How should i connect&amp;nbsp;&lt;SPAN&gt;tLibraryLoad and tJavaRow in my workflow? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;should it be as follows? Please suggest if i should arrange this palettes in different way.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tMap -&amp;gt; tLibraryLoad -&amp;gt;&amp;nbsp;tJavaRow -&amp;gt; tFileOutputDelimited&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 13:48:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242834#M29528</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-02T13:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242835#M29529</link>
      <description>&lt;P&gt;well, if you just want to remove starting white spaces (not all) just use:&lt;/P&gt; 
&lt;PRE&gt;output_row.line = StringUtils.stripAccents(input_row.line).replaceAll("[?]", "").replaceAll("^ ", "");&lt;/PRE&gt; 
&lt;P&gt;maybe exists a shorter form, but it works:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Ltzx.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130524iF9109C6AE11DDA3D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Ltzx.png" alt="0683p000009Ltzx.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 14:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242835#M29529</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T14:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242836#M29530</link>
      <description>Usually, place the tLibraryLoad at the bebenning of the job. 
&lt;BR /&gt;In my example, because there is nothing else inthe job, it's the 1st component and the following tFixedFlowInput is connected with a trigger onSubjobOk (or onComponentOk). 
&lt;BR /&gt; 
&lt;BR /&gt;Don't forget to indicate the topic as solved (if it's) - also Kudos are welcome 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 02 May 2017 14:10:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242836#M29530</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T14:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242837#M29531</link>
      <description>&lt;P&gt;I downloaded the jar file from&amp;nbsp;&lt;A href="http://book2s.com/java/jar/c/commons-lang3/download-commons-lang3-3.4.jar.html" target="_blank" rel="nofollow noopener noreferrer"&gt;http://book2s.com/java/jar/c/commons-lang3/download-commons-lang3-3.4.jar.html&lt;/A&gt; and&amp;nbsp;&amp;nbsp;tried working with the suggested solution and made&amp;nbsp;tLibrary as first component. Below is how tLibraryLoad is configured&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Basic Settings" style="width: 737px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lu02.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139705iD22A22E363C43FD5/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lu02.jpg" alt="0683p000009Lu02.jpg" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Basic Settings&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Advanced settings" style="width: 709px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LteR.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151325i4455316B7A167642/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LteR.jpg" alt="0683p000009LteR.jpg" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Advanced settings&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;And this is how tJavaRow is configured. I added the column name 'summary' after &lt;STRONG&gt;output_row&lt;/STRONG&gt; and &lt;STRONG&gt;input_row&lt;/STRONG&gt;&amp;nbsp;in the code as follows&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 705px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LteS.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133193i14CC1353F991D2D3/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LteS.jpg" alt="0683p000009LteS.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;However, i am getting error&lt;/P&gt; 
&lt;PRE&gt;Execution failed : Job compile errors 
At least job "Test2_Copy" has a compile errors, please fix and export again.
Error Line: 49
Detail Message: Syntax error on token ""org.apache.commons.lang3.StringUtils;"", delete this token
There may be some other errors caused by JVM compatibility. Make sure your JVM setup is similar to the studio.&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 14:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242837#M29531</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-02T14:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242838#M29532</link>
      <description>&lt;P&gt;you must load the library first: tLibraryLoad - onSubjob OK -&amp;gt; tFileList&lt;/P&gt;
&lt;P&gt;also verifiy Advanced setting of&amp;nbsp;&lt;SPAN&gt;tLibraryLoad. It must contain&amp;nbsp;import org.apache.commons.lang3.StringUtils; in the Import field.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Edit: OK, forget, just remove both "&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;in the Import field (that's Java code, not just a string)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 15:05:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242838#M29532</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T15:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242839#M29533</link>
      <description>&lt;P&gt;I inserted &lt;STRONG&gt;import org.apache.commons.lang3.StringUtils;&lt;/STRONG&gt; in the advanced settings field and it ran without any error, however the output is not what i&amp;nbsp;need. It simply replace accented &lt;STRONG&gt;Ñ&lt;/STRONG&gt; with a question mark &lt;STRONG&gt;?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Shenzhen WenTong electronic co.Ltd Ñ power adapter&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is converted into&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Shenzhen WenTong electronic co.Ltd ? power adapter&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 15:24:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242839#M29533</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-02T15:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242840#M29534</link>
      <description>What's the encoding of the tFileInputDelimited?</description>
      <pubDate>Tue, 02 May 2017 15:40:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242840#M29534</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T15:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242841#M29535</link>
      <description>&lt;P&gt;UTF-8&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
 &lt;HR /&gt;
 &lt;A href="https://community.qlik.com/s/profile/0053p000007LKj7AAG"&gt;@TRF&lt;/A&gt; wrote:
 &lt;BR /&gt;What's the encoding of the tFileInputDelimited?
 &lt;HR /&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 15:42:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242841#M29535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-02T15:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242842#M29536</link>
      <description>But is your file encoded as utf8?&lt;BR /&gt;I just tested on my side and it works fine.</description>
      <pubDate>Tue, 02 May 2017 15:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242842#M29536</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T15:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242843#M29537</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;The following steps might helps you.&lt;/P&gt; 
&lt;P&gt;Step1: Change file read encoding&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.PNG" style="width: 479px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Ltxd.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156782i334DC2A421B4ACF5/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Ltxd.png" alt="0683p000009Ltxd.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Step2: Create new routines&amp;nbsp;stripAccents with below script.&lt;/P&gt; 
&lt;P&gt;package routines;&lt;BR /&gt;import java.text.Normalizer;&lt;BR /&gt;public class stripAccents {&lt;/P&gt; 
&lt;P&gt;public static String stripAccents(String s)&lt;BR /&gt;{&lt;BR /&gt;s = Normalizer.normalize(s, Normalizer.Form.NFD);&lt;BR /&gt;s = s.replaceAll("[\\p{InCombiningDiacriticalMarks}]", "");&lt;BR /&gt;return s;&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.PNG" style="width: 764px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lu0M.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156854i44DC43689FF6D58B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lu0M.png" alt="0683p000009Lu0M.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;create job src--&amp;gt; tMap--&amp;gt; tLogRow&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.PNG" style="width: 520px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Ltse.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153473iB35CCD7BECC72E0C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Ltse.png" alt="0683p000009Ltse.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;COL as input in Source and row1.COL as in put in tMap. COL as output in tMap.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;output COL --&amp;gt; stripAccents.stripAccents(row1.COL).replaceAll("[?]", "").replaceAll("^ ", "")&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Input Data:&lt;/P&gt; 
&lt;P&gt;?? at Shenzhen Xingjiexun Electronics Co.Ltd&lt;BR /&gt;Designer at FabUnion | ????????&lt;BR /&gt;Jinanhaolu Ñ manager&lt;BR /&gt;aaaéééàààçççbbbb&lt;BR /&gt;Shenzhen WenTong electronic co.Ltd Ñ power adapter&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Output Data:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.PNG" style="width: 668px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Ltxx.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153471i38102D610D54967B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Ltxx.png" alt="0683p000009Ltxx.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Hope this helps!&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 16:06:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242843#M29537</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2017-05-02T16:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242844#M29538</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKj7AAG"&gt;@TRF&lt;/A&gt;&amp;nbsp;can you post screenshot?&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLseAAG"&gt;@vboppudi&lt;/A&gt;&amp;nbsp;file is in UTF-8 format and if i change the format in input, file is not read properly, I faced this issue and it took me a week to understand the reason and after i&amp;nbsp;switched to UTF-8, data was read properly.&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 16:17:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242844#M29538</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-02T16:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242845#M29539</link>
      <description>Hi, 
&lt;BR /&gt;If i change encoding to UTF-8, i am not able to read data properly. Getting like below 
&lt;BR /&gt;|at Shenzhen Xingjiexun Electronics Co.Ltd | 
&lt;BR /&gt;|Designer at FabUnion | | 
&lt;BR /&gt;|Jinanhaolu � manager | 
&lt;BR /&gt;|aaa���������bbbb | 
&lt;BR /&gt;|Shenzhen WenTong electronic co.Ltd � power adapter 
&lt;BR /&gt;Regards,</description>
      <pubDate>Tue, 02 May 2017 16:20:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242845#M29539</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2017-05-02T16:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242846#M29540</link>
      <description>&lt;P&gt;Here is the job with the tFileInputDelimited:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtaG.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/150128i0A787D4FFECE7450/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtaG.png" alt="0683p000009LtaG.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;The Advanced settings tab of the&amp;nbsp;&lt;SPAN&gt;tFileInputDelimited:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Ltut.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155074i966B46325D902AE6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Ltut.png" alt="0683p000009Ltut.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;The input file with the Encoding menu (from Notepad++):&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LrmP.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155770iEE345FB928EBEC46/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LrmP.png" alt="0683p000009LrmP.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Finally, the result:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lt36.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157266iAA4FDCA6FBDC4AD3/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lt36.png" alt="0683p000009Lt36.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLqvAAG"&gt;@Enthusiast&lt;/A&gt;, let us know the encoding system for your file.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 16:30:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242846#M29540</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T16:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242847#M29541</link>
      <description>&lt;P&gt;Its appearing as ANSI when i open it in Notepad++&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 17:00:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242847#M29541</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-02T17:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Clean accented character and white space in column</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242848#M29542</link>
      <description>&lt;P&gt;So just select ISO-8859-15 as the encoding system in the Advanced settings tab.&lt;/P&gt;&lt;P&gt;It works (I've tried).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 18:27:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Clean-accented-character-and-white-space-in-column/m-p/2242848#M29542</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-02T18:27:39Z</dc:date>
    </item>
  </channel>
</rss>

