I'm using the free Version of Talend and i'm trying to transform a csv-File via tMap and i want it to ignore input Objects in my Output when they're empty strings. I tried to add this: "row1.Comment1.equals("")?null:("667 " + row1.Comment1)", but it still prints an empty field when i pipe it to tFileOutputDelimited. Is there any way to remove this empty field without writing a new component?