String Manipulation with Blank as it is

I have such table and the expected result after the string manipulation is in column 2 (= join(column 0, column 1)

column 0 column 1 column 2
John Hello JohnHello
Tom Hi TomHi
Amy (blank) Amy

But in KNIME, the table shows like this. There is no result for the row with “Amy”.
column 0 column 1 column 2
John Hello JohnHello
Tom Hi TomHi
Amy ? ?

How can I solve this issue?

Thanks.

You can use


node to replace null string with space.
4 Likes

Hi @uksong,

In addition to the solution by @izaychik63, you can also use the Column Expressions and this expression:

join(string(column("column 0")),string(column("column 1")))

This trick does not work in String Manipulation.

:blush:

1 Like

Hi there,

check this topic for more.

Br,
Ivan

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.