I’ve tried the String Manipulator, but it seems to have issues with the “______”. I am new the KNIME, but what have I missed here please? The space is 6 underscores - is that significant?
TIA
@Tropicpalm welcome to the KNIME forum.
One option ist the String Manipulation:
regexReplace($column1$, "^ {6}$" ,toNull(""))
Or you can use the Column Expression:
if ( equals(column("column1"), " "))
{toNull("")}
else {column("column1")}
4 Likes
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.