Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I a few fields I am trying to convert from a Float from the Input to a String in the Output. I have tried a few different ways and I get an error back on each way.
I have tried the following:
Row1.Field1.toPlainString()
and
Float.parseFloat(row1.Field1).toString()
Each time I try either of these I get an error saying the method is not applicable. Any idea what I am missing?
thanks!
Try this:
String.valueOf(row1.Field1)
Hello steel @steeld95
Please follow this link below
http://talendhowto.com/2017/08/29/convert-between-different-datatypes/
Thanks,
Manish
Thank you! That did it. Now I am able to move data. I appreciate the help!
Thank you @ksingh . This is extremely helpful!