<?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: Disable regular expression in tFTPDelete in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233847#M23402</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you may uncheck the "Use Perl5 Regex Expressions as Filemask" and it will only take 2 wildcard characters: "*" for anything and "?" for a single character.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jul 2019 07:56:16 GMT</pubDate>
    <dc:creator>lennelei</dc:creator>
    <dc:date>2019-07-17T07:56:16Z</dc:date>
    <item>
      <title>Disable regular expression in tFTPDelete</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233846#M23401</link>
      <description>&lt;P&gt;I have xml file names such as&amp;nbsp;1[.xml and&amp;nbsp;CUP-[3000011769]-20180208142225.xml.&lt;/P&gt; 
&lt;P&gt;It is taking "[" bracket as regular expression. How to disable regular expression at FileMask.&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="filemask.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M6Zr.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/152006i285DD2B24AAFEF31/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M6Zr.png" alt="0683p000009M6Zr.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 04:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233846#M23401</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-17T04:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Disable regular expression in tFTPDelete</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233847#M23402</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you may uncheck the "Use Perl5 Regex Expressions as Filemask" and it will only take 2 wildcard characters: "*" for anything and "?" for a single character.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 07:56:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233847#M23402</guid>
      <dc:creator>lennelei</dc:creator>
      <dc:date>2019-07-17T07:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Disable regular expression in tFTPDelete</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233848#M23403</link>
      <description>Although i uncheck "Use Perl5 Regex Expressions as Filemask", it is not working. It catches bracket "[" as expression. I want to delete by current file name "((String)globalMap.get("tFileList_1_CURRENT_FILE"))".</description>
      <pubDate>Wed, 17 Jul 2019 08:06:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233848#M23403</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-17T08:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Disable regular expression in tFTPDelete</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233849#M23404</link>
      <description>&lt;P&gt;You're right, my bad. It seems that when unchecking, it uses &lt;A href="https://svn.apache.org/repos/asf/jakarta/oro/tags/oro-2.0.9-dev-1/docs/api/org/apache/oro/text/GlobCompiler.html" target="_self" rel="nofollow noopener noreferrer"&gt;this library&lt;/A&gt; to convert to Perl5 regex.&lt;/P&gt; 
&lt;P&gt;And according to the documentation, it support brackets notation from the Unix shell.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Unless you want to update the default component, I think you will have to work on the filename.&lt;/P&gt; 
&lt;P&gt;You might either escape only brackets (.replaceAll(...)), or you can&amp;nbsp;&lt;SPAN&gt;use a more generic method such as&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#quote(java.lang.String)" target="_self" rel="nofollow noopener noreferrer"&gt;Pattern.quote&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 08:58:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233849#M23404</guid>
      <dc:creator>lennelei</dc:creator>
      <dc:date>2019-07-17T08:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Disable regular expression in tFTPDelete</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233850#M23405</link>
      <description>&lt;P&gt;Can you explain more on how to do it? Any way to disable regular expressions?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 04:37:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233850#M23405</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T04:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Disable regular expression in tFTPDelete</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233851#M23406</link>
      <description>&lt;P&gt;You can use this in the filemask :&lt;/P&gt; 
&lt;PRE&gt;java.util.regex.Pattern.quote(((String)globalMap.get("tFileList_1_CURRENT_FILE")))&lt;/PRE&gt; 
&lt;P&gt;This command will escape characters from the Filename.&lt;/P&gt; 
&lt;P&gt;It produces an escaped RegEx so don't forget to tick the "&lt;SPAN&gt;Use Perl5 Regex Expressions as Filemask" checkbox&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 10:57:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233851#M23406</guid>
      <dc:creator>lennelei</dc:creator>
      <dc:date>2019-07-18T10:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Disable regular expression in tFTPDelete</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233852#M23407</link>
      <description>&lt;P&gt;The point of good I really favor in your blog. I am a &lt;A href="https://www.digitalsaad.us/" target="_self" rel="nofollow noopener noreferrer"&gt;freelance web developer NYC&lt;/A&gt; and i provide best web design services among other companies&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2019 13:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-regular-expression-in-tFTPDelete/m-p/2233852#M23407</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-16T13:04:37Z</dc:date>
    </item>
  </channel>
</rss>

