<?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 Convert Integer to String in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254952#M37803</link>
    <description>&lt;P&gt;I need to convert a primary key Interger to a String.&lt;BR /&gt;In the tMap I have written: (REF.REF_ID).toString() but the following error appears: "cannot invoke toString() on the primitive type int".&lt;BR /&gt;How can I convert it?&lt;BR /&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 14:25:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T14:25:32Z</dc:date>
    <item>
      <title>Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254952#M37803</link>
      <description>&lt;P&gt;I need to convert a primary key Interger to a String.&lt;BR /&gt;In the tMap I have written: (REF.REF_ID).toString() but the following error appears: "cannot invoke toString() on the primitive type int".&lt;BR /&gt;How can I convert it?&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 14:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254952#M37803</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254953#M37804</link>
      <description>try:&lt;BR /&gt;(new Integer(yourvalue)).toString()&lt;BR /&gt;hope this helps</description>
      <pubDate>Wed, 19 Mar 2008 15:26:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254953#M37804</guid>
      <dc:creator>olektrolek</dc:creator>
      <dc:date>2008-03-19T15:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254954#M37805</link>
      <description>Or you can use ""+REF.REF_ID 
&lt;BR /&gt; 
&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>Wed, 19 Mar 2008 15:34:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254954#M37805</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-19T15:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254955#M37806</link>
      <description>I see the "Perl" tag associated to this topic, but I don't think you're using a Perl project as Perl do this kind of conversion automatically. Can you confirm you're using Java?</description>
      <pubDate>Wed, 19 Mar 2008 18:06:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254955#M37806</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-19T18:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254956#M37807</link>
      <description>Excuse me for the wrong information: my project is in java!&lt;BR /&gt;The solution (new Integer(REF.REF_ID)).toString() seems to work.&lt;BR /&gt;I had tried the: ""+REF.REF_ID without success!!&lt;BR /&gt;Thanks to every body.</description>
      <pubDate>Fri, 21 Mar 2008 07:55:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254956#M37807</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-21T07:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254957#M37808</link>
      <description>I have replied to quick. 
&lt;BR /&gt;With the expression (new Integer(REF.REF_ID)).toString() the tMap expression builder don't make an error anymore. But the tMap component falls in error. The convertion of interger to string for a primary key is not possible.</description>
      <pubDate>Fri, 21 Mar 2008 08:05:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254957#M37808</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-21T08:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254958#M37809</link>
      <description>Hi
&lt;BR /&gt;Try this:
&lt;BR /&gt;String.valueOf(REF.REF_ID)
&lt;BR /&gt;Best regards
&lt;BR /&gt; shong</description>
      <pubDate>Fri, 21 Mar 2008 08:14:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254958#M37809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-03-21T08:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254959#M37810</link>
      <description>hi Shong, I am facing similar issue (converting string to char). My input schema is string/char and output schema is char column from OracleSP. It says datatype/argument mismatch when I run the job. Pls suggest.</description>
      <pubDate>Mon, 17 Jan 2011 16:25:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254959#M37810</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-17T16:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254960#M37811</link>
      <description>Hi Pratik&lt;BR /&gt;you can use tconvertType component for converting column of one data type to other data type in talend&lt;BR /&gt;Regards&lt;BR /&gt;Ashok&amp;nbsp;</description>
      <pubDate>Tue, 05 Aug 2014 17:57:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254960#M37811</guid>
      <dc:creator>ashok5</dc:creator>
      <dc:date>2014-08-05T17:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254961#M37812</link>
      <description>or you can Google it to find all the java conversions</description>
      <pubDate>Thu, 07 Aug 2014 10:03:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254961#M37812</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2014-08-07T10:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254962#M37813</link>
      <description>&lt;P&gt;I'm new to Talend.&amp;nbsp; what do you mean by REF.REF_ID.&amp;nbsp; Would&amp;nbsp; you provide an example. Also there is a DataOperation Function&amp;nbsp;called CHAR(int I):id_Character - DataOperation which converts a numeric value to its ASCII character string equivalent.&amp;nbsp; Does this accomplish the same thing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2018 20:25:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254962#M37813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-23T20:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Integer to String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254963#M37814</link>
      <description>&lt;P&gt;BTW, the CHAR function is listed in tMAP if using the Expression Builder.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Mar 2018 20:26:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-Integer-to-String/m-p/2254963#M37814</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-23T20:26:45Z</dc:date>
    </item>
  </channel>
</rss>

