<?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: How to pass a String correctly in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367219#M130622</link>
    <description>&lt;P&gt;can you check your data,is it have in UPPER case or LOWER case values?&lt;/P&gt;
&lt;P&gt;if you have lowercase use ignore case or&amp;nbsp;StringHandling.UPCASE functions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;LAB1216AN3012 or lab1216an3012&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2018 09:53:59 GMT</pubDate>
    <dc:creator>manodwhb</dc:creator>
    <dc:date>2018-02-22T09:53:59Z</dc:date>
    <item>
      <title>How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367206#M130609</link>
      <description>&lt;P&gt;hi&lt;/P&gt; 
&lt;P&gt;how can i pass String in active express Builder ?&lt;/P&gt; 
&lt;P&gt;am doing like this&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="string ques.JPG" style="width: 470px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LsNg.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157704i64A649A4AC09C3E1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LsNg.jpg" alt="0683p000009LsNg.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;am not getting any output.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2018 10:41:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367206#M130609</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-17T10:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367207#M130610</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You are trying to filter a tMap output flow to keep only rows associated to the input flow "row1" for which DEVICEID is equal to "LAB0115AN3131 " (including the final space.&lt;/P&gt;
&lt;P&gt;2 things:&lt;/P&gt;
&lt;P&gt;- are you sure about the final space?&lt;/P&gt;
&lt;P&gt;- most important, you should never compare 2 strings using the "==" operator but only the "equals" or "equalsIgnoreCase" method like this:&lt;/P&gt;
&lt;PRE&gt;row1.DEVICEID.equals("LAB0115AN3131 ")&lt;/PRE&gt;
&lt;P&gt;(or maybe without the final space).&lt;/P&gt;
&lt;P&gt;Hope this help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2018 12:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367207#M130610</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-02-17T12:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367208#M130611</link>
      <description>&lt;P&gt;when it is string field ,use the below expression in active experss Builder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;row1.DeviceId.equals("LAB0115ANS3131 ")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you have null data in&amp;nbsp;&lt;SPAN&gt;row1.DeviceId,you may get null pointer exception&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;for that use below expression.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;("LAB0115ANS3131 ").equals(row1.DeviceId)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 09:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367208#M130611</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-02-19T09:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367209#M130612</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LMjbAAG"&gt;@ksingh&lt;/A&gt;, did this help you.&lt;/P&gt; 
&lt;P&gt;In this case, thank's to mark your cae as solved (Kudo also accepted).&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 09:25:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367209#M130612</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-02-19T09:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367210#M130613</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ansreply.JPG" style="width: 609px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LsIL.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148988i9E45F0C240AA85BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LsIL.jpg" alt="0683p000009LsIL.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tmap.JPG" style="width: 443px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LsMZ.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156103iEF5B9F2332604FE7/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LsMZ.jpg" alt="0683p000009LsMZ.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;am doing this and am not getting any output. Please suggest me something which will helpful for me&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 11:01:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367210#M130613</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-21T11:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367211#M130614</link>
      <description>&lt;P&gt;do you have data space like after the end of the value&amp;nbsp;&lt;SPAN&gt;"LAB0115ANS3131 ",if not please remove space.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 11:41:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367211#M130614</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-02-21T11:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367212#M130615</link>
      <description>&lt;P&gt;can you try with&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;row1.DeviceId.equals("LAB0115ANS3131")&lt;/STRONG&gt; ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 11:42:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367212#M130615</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-02-21T11:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367213#M130616</link>
      <description>&lt;P&gt;am not getting any output . now what i will do ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 13:23:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367213#M130616</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-21T13:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367214#M130617</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;As said in my 1rst answer, it seems you have a space at the and of the string used in your expression.&lt;/P&gt;
&lt;P&gt;Is it normal?&lt;/P&gt;
&lt;P&gt;However, you may also use a tFilterRow in such a case if you just want to exclude&amp;nbsp;rows not matching with your filter.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 13:36:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367214#M130617</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-02-21T13:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367215#M130618</link>
      <description>&lt;P&gt;its normal. when u told me about space am checked and remove space after that run my job. its full scan but not provide any output. the STRING which am used in express builder am copy from database. means that string is exist in my database.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2018 13:52:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367215#M130618</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-21T13:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367216#M130619</link>
      <description>&lt;P&gt;I suppose there is no filter on the input side.&lt;/P&gt;
&lt;P&gt;So, maybe a non editable character into your database field value (?)&lt;/P&gt;
&lt;P&gt;Just for testing, can you replace the expression by the following (to ignore the last character):&lt;/P&gt;
&lt;PRE&gt;row1.DeviceId.startsWith("LAB0115AN3131")&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Feb 2018 14:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367216#M130619</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-02-21T14:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367217#M130620</link>
      <description>&lt;P&gt;am not getting any row in my database.when am using&lt;STRONG&gt;&amp;nbsp;row1.DeviceID.startsWith("LAB1216AN3012")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;am also try&amp;nbsp;&lt;STRONG&gt;row1.DeviceID.contains("LAB1216AN3012").&amp;nbsp;&lt;/STRONG&gt;my output database is empty.&lt;/P&gt;&lt;P&gt;when i will use only mapping not any condition than am getting output.&lt;/P&gt;&lt;P&gt;please kindly help me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 09:42:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367217#M130620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-22T09:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367218#M130621</link>
      <description>&lt;P&gt;where is my fault ? if there is another way please suggest me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 09:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367218#M130621</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-22T09:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367219#M130622</link>
      <description>&lt;P&gt;can you check your data,is it have in UPPER case or LOWER case values?&lt;/P&gt;
&lt;P&gt;if you have lowercase use ignore case or&amp;nbsp;StringHandling.UPCASE functions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;LAB1216AN3012 or lab1216an3012&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 09:53:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367219#M130622</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-02-22T09:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367220#M130623</link>
      <description>&lt;P&gt;Strange.&lt;/P&gt; 
&lt;P&gt;Replace your database by a file and remove the tMap expression filter then search for the value in the file using your prefered text editor to check that your data arrive as expected.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 09:58:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367220#M130623</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-02-22T09:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367221#M130624</link>
      <description>&lt;P&gt;uppercase or lowercase&amp;nbsp; no issue.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 10:05:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367221#M130624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-22T10:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367222#M130625</link>
      <description>&lt;P&gt;no issue means is your issue fixed?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 10:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367222#M130625</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-02-22T10:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367223#M130626</link>
      <description>&lt;P&gt;lower case and upper case is not issue. my problem is not fixed now.&lt;/P&gt;&lt;P&gt;am also trying different approach due to it am not responding instant.&amp;nbsp;&lt;/P&gt;&lt;P&gt;when my problem is fixed i will Accept as Solution because i don't want my problem became anybody headache.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 11:40:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367223#M130626</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-22T11:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367224#M130627</link>
      <description>&lt;P&gt;Dear Folks&lt;/P&gt;&lt;P&gt;Please provide me solution related my post.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 09:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367224#M130627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-06T09:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to pass a String correctly</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367225#M130628</link>
      <description>&lt;P&gt;Can you try&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(row1.DeviceId).equals("LAB0115ANS3131 ")&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp; ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;with braces around the variable.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 09:47:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-pass-a-String-correctly/m-p/2367225#M130628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-06T09:47:05Z</dc:date>
    </item>
  </channel>
</rss>

