Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Talendians,
I have a input column product from my source that is of int type, however when i load into my target i want add \\ to the end of it.
Lets say my input is 10, i want my output to be 10\\. How do i achieve this in talend?
I have been using the following expression so far: String.valueOf(row1.coumn)
Please suggest?
String.valueOf(row1.coumn) + "\\\\"