I have a file with two columns the first one with a name and the second one with a number.

The size of the number column is 20 chars, the numbers use to be less than 2 chars size the rest of the chars are complite with 0.

I need to take out all the ceros before the coma. I should use a tMap, How?

link|improve this question

45% accept rate
Is talend the language your using? If not, could you specify? I've never heard of talend before. – Bryce Siedschlaw May 31 '11 at 19:06
Is not a language, is a ETL Software Talend Open Studio – JMira May 31 '11 at 19:08
feedback

1 Answer

up vote 1 down vote accepted

The solution: Using a tMap, put a Var in the midle of both files (Input and output). In the var use:

"0"+row1.numberField.split(",")[0].replace("0", "") + "." + row1.numberField.split(",")[1]

Example: 000000001,58 Result: 01.58

Solution 2: Define your own routine:

public static String calcImp(String theNumber) {
    Float theFNumber = new Float(theNumber.replace(",", "."));

    return Float.toString(theFNumber).replace(".", ",");
}  

Example: 000000001,587 Result: 1,587

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.