Extract text

Hello everyone!

I would like to know how I can extract the string “Aut.” the “Semi-Aut” in the “Car” column, I managed to do this task using a python knot, but I would like it to be done by knime nodes

Here is the link for the knime model

Hi @Ranalytics

You can use the Rule Engine node.

$Carro$  LIKE "*Semi-Aut*" => "Semi-Aut"
$Carro$  LIKE "*Aut*" => "Aut"
TRUE => $Cambio$

gr. Hans

6 Likes

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