Column Expressions Tool Question

Why is this formula not working in the column expressions tool:

replaceChars(column(“INTERIM ($)”), “)”, “”)
&& replaceChars(column(“INTERIM ($)”), “(”, “-”)

Hi @austinbauer and welcome to the KNIME community forum,

If you want to replace “(” with “-” and remove closing parenthesis, use this expression instead:

replaceChars(column("column1"),"()", "-")

:blush:

3 Likes

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