<?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: regex replace in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375408#M137828</link>
    <description>Hi, &lt;BR /&gt;Could you please check the component &lt;A href="https://help.talend.com/search/all?query=tFileInputRegex&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;tFileInputRegex&lt;/A&gt; to see if it what are you looking for?&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
    <pubDate>Fri, 27 Sep 2013 02:50:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-09-27T02:50:57Z</dc:date>
    <item>
      <title>regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375407#M137827</link>
      <description>Hello Everybody,
&lt;BR /&gt;I want to use regex to mask somme caractere. For exemple, I have this model : 0000 zzzz 0000 yyyy 0000
&lt;BR /&gt;that's mean that the 4 first positions( first bloc ) will not be replaced and also the third and the fifth.
&lt;BR /&gt;For the second bloc, i will replace mask using "z".
&lt;BR /&gt;For the 4th bloc, I will replace by "y".
&lt;BR /&gt;How can I do it with talend?
&lt;BR /&gt;thank u for help</description>
      <pubDate>Thu, 26 Sep 2013 17:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375407#M137827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-26T17:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375408#M137828</link>
      <description>Hi, &lt;BR /&gt;Could you please check the component &lt;A href="https://help.talend.com/search/all?query=tFileInputRegex&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;tFileInputRegex&lt;/A&gt; to see if it what are you looking for?&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Fri, 27 Sep 2013 02:50:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375408#M137828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-27T02:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375409#M137829</link>
      <description>Could you please show me a example coz I'm newbie in Talend.&lt;BR /&gt;Thank you</description>
      <pubDate>Fri, 27 Sep 2013 09:23:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375409#M137829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-27T09:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375410#M137830</link>
      <description>Could somebody help me to find a solution for my problem.&lt;BR /&gt;Thank you</description>
      <pubDate>Tue, 01 Oct 2013 13:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375410#M137830</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-01T13:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375411#M137831</link>
      <description>hey, &lt;BR /&gt;try (input)------tNormalize----tSampleRow--------tReplace (or tJavaRow)&lt;BR /&gt;in tNormalize choose " " as separator and in tSampleRow choose line 2 and 4 with "2,4", then use tReplace or tJavaRow.</description>
      <pubDate>Tue, 01 Oct 2013 16:07:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375411#M137831</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-01T16:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375412#M137832</link>
      <description>or just do in a tMap &lt;BR /&gt;input_row.your_column.susbtring(0,6) + " " + input_row.your_column.susbtring(input_row.your_column.length()-6,input_row.your_column.length())</description>
      <pubDate>Wed, 02 Oct 2013 07:07:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375412#M137832</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-02T07:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375413#M137833</link>
      <description>hi,&lt;BR /&gt;using substring, if pattern change the result will be wrong or a bound exception.&lt;BR /&gt;So could be if the format is quite "static".&lt;BR /&gt;regards&lt;BR /&gt;laurent</description>
      <pubDate>Wed, 02 Oct 2013 10:55:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375413#M137833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-02T10:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: regex replace</title>
      <link>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375414#M137834</link>
      <description>It's not a static, the model is dynamic . I managed to do that :
&lt;BR /&gt;4567 - ZA15 - B985 - 7413 - C5D4 but it replaces juste one time!!!
&lt;BR /&gt;How can I do it many times
&lt;BR /&gt;Thank you</description>
      <pubDate>Fri, 04 Oct 2013 09:29:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/regex-replace/m-p/2375414#M137834</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-04T09:29:59Z</dc:date>
    </item>
  </channel>
</rss>

