<?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: [resolved] Suppress Exponent in a double format in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370074#M133160</link>
    <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;And how to achieve it in tMap?&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Create a method in a routine to do it, the method requires an input parameter, you just need to call the routine and pass the incoming data as input parameter on tMap.</description>
    <pubDate>Thu, 26 Mar 2015 01:06:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-03-26T01:06:09Z</dc:date>
    <item>
      <title>[resolved] Suppress Exponent in a double format</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370070#M133156</link>
      <description>Hi everyone,&lt;BR /&gt;I need to obtain a double which has no exponent in an csv file. The file is from a tfileOutputdelimited.&lt;BR /&gt;In my files I got these things : 3.53435E12 and I need 353435000000.&lt;BR /&gt;And I also need to keep the decimal if there are any.&lt;BR /&gt;I tried a few things on the tmap but I could'nt find any solutions.&lt;BR /&gt;Someone has any idea ?&lt;BR /&gt;&lt;BR /&gt;Thanks,</description>
      <pubDate>Sat, 16 Nov 2024 13:50:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370070#M133156</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T13:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Suppress Exponent in a double format</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370071#M133157</link>
      <description>Hello 
&lt;BR /&gt;I tested it on tJava:
&lt;BR /&gt;
&lt;PRE&gt;	double d = 3.53435E12;&lt;BR /&gt;			java.text.DecimalFormat df = new java.text.DecimalFormat("#.#");&lt;BR /&gt;                        String s=df.format(d);&lt;BR /&gt;			System.out.println("d   =   " + s);&lt;/PRE&gt;
&lt;BR /&gt;result:
&lt;BR /&gt;
&lt;PRE&gt;tarting job forum7601 at 10:13 04/08/2009.&lt;BR /&gt;d   =   3534350000000&lt;BR /&gt;Job forum7601 ended at 10:13 04/08/2009. &lt;/PRE&gt;
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Tue, 04 Aug 2009 03:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370071#M133157</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-04T03:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Suppress Exponent in a double format</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370072#M133158</link>
      <description>thank you for the answer</description>
      <pubDate>Tue, 04 Aug 2009 08:29:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370072#M133158</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2009-08-04T08:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Suppress Exponent in a double format</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370073#M133159</link>
      <description>And how to achieve it in tMap?</description>
      <pubDate>Wed, 25 Mar 2015 09:32:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370073#M133159</guid>
      <dc:creator>tYrannoSaurusRex_1</dc:creator>
      <dc:date>2015-03-25T09:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Suppress Exponent in a double format</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370074#M133160</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;And how to achieve it in tMap?&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Create a method in a routine to do it, the method requires an input parameter, you just need to call the routine and pass the incoming data as input parameter on tMap.</description>
      <pubDate>Thu, 26 Mar 2015 01:06:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Suppress-Exponent-in-a-double-format/m-p/2370074#M133160</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-26T01:06:09Z</dc:date>
    </item>
  </channel>
</rss>

