<?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 scientific notation to decimal in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Convert-scientific-notation-to-decimal/m-p/2345889#M113348</link>
    <description>&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt; 
 &lt;DIV class="MessageSubject"&gt; 
  &lt;DIV class="MessageSubjectIcons "&gt; 
   &lt;DIV class="lia-message-subject"&gt;
    Hi Talend Folks, 
    &lt;P&gt;&amp;nbsp;&lt;/P&gt; Convert scientific notation to decimal
   &lt;/DIV&gt; 
  &lt;/DIV&gt; &amp;nbsp;&amp;nbsp;
 &lt;/DIV&gt; 
&lt;/DIV&gt; 
&lt;DIV class="lia-message-body lia-component-body-signature-highlight-escalation"&gt; 
 &lt;DIV class="lia-message-body-content"&gt; 
  &lt;P&gt;I currently have a string field that contains scientific notation values. I would like to convert these to decimal.&lt;/P&gt; 
  &lt;P&gt;Thanks in advance for your help!!&lt;/P&gt; 
  &lt;P&gt;Example&lt;/P&gt; 
  &lt;P&gt;Current format&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Needed Format&lt;/P&gt; 
  &lt;P&gt;-1.9178464696202265E-2 --&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -0.01917846469620226500&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;Note:&amp;nbsp;I have a urgent requirement. How to solve this issues?. Please Help me friends.&lt;/STRONG&gt;&lt;/P&gt; 
  &lt;P&gt;&amp;nbsp;Whether it is possible to convert format using encoding option when i import csv file.&lt;/P&gt; 
 &lt;/DIV&gt; 
&lt;/DIV&gt;</description>
    <pubDate>Sat, 16 Sep 2017 10:02:38 GMT</pubDate>
    <dc:creator>RAJ6</dc:creator>
    <dc:date>2017-09-16T10:02:38Z</dc:date>
    <item>
      <title>Convert scientific notation to decimal</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-scientific-notation-to-decimal/m-p/2345889#M113348</link>
      <description>&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt; 
 &lt;DIV class="MessageSubject"&gt; 
  &lt;DIV class="MessageSubjectIcons "&gt; 
   &lt;DIV class="lia-message-subject"&gt;
    Hi Talend Folks, 
    &lt;P&gt;&amp;nbsp;&lt;/P&gt; Convert scientific notation to decimal
   &lt;/DIV&gt; 
  &lt;/DIV&gt; &amp;nbsp;&amp;nbsp;
 &lt;/DIV&gt; 
&lt;/DIV&gt; 
&lt;DIV class="lia-message-body lia-component-body-signature-highlight-escalation"&gt; 
 &lt;DIV class="lia-message-body-content"&gt; 
  &lt;P&gt;I currently have a string field that contains scientific notation values. I would like to convert these to decimal.&lt;/P&gt; 
  &lt;P&gt;Thanks in advance for your help!!&lt;/P&gt; 
  &lt;P&gt;Example&lt;/P&gt; 
  &lt;P&gt;Current format&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Needed Format&lt;/P&gt; 
  &lt;P&gt;-1.9178464696202265E-2 --&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -0.01917846469620226500&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;Note:&amp;nbsp;I have a urgent requirement. How to solve this issues?. Please Help me friends.&lt;/STRONG&gt;&lt;/P&gt; 
  &lt;P&gt;&amp;nbsp;Whether it is possible to convert format using encoding option when i import csv file.&lt;/P&gt; 
 &lt;/DIV&gt; 
&lt;/DIV&gt;</description>
      <pubDate>Sat, 16 Sep 2017 10:02:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-scientific-notation-to-decimal/m-p/2345889#M113348</guid>
      <dc:creator>RAJ6</dc:creator>
      <dc:date>2017-09-16T10:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert scientific notation to decimal</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Convert-scientific-notation-to-decimal/m-p/2345890#M113349</link>
      <description>&lt;P&gt;You can use the BigDecimal class for this. The following code can be placed in a tJava component to demonstrate how it works....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;String value = "5.1234E-09";
BigDecimal bd = new BigDecimal(value);

System.out.println(bd.toPlainString());&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Sep 2017 21:49:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Convert-scientific-notation-to-decimal/m-p/2345890#M113349</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-16T21:49:04Z</dc:date>
    </item>
  </channel>
</rss>

