Rule Engine

I have a list as follows:
yellow
yellow house
yellow - bottom

everywhere where yellow is written, for example tree should be written. How can I do this with Rule Engine?

Hello @pie,

so you would like to change word yellow with tree or add tree to yellow or something else? How should output look like from your given list?

Br,
Ivan

Sorry from this list
yellow
yellow house
yellow - bottom

To this:

tree
tree
tree

Hello @pie,

so it is something else :sweat_smile:

Yes, you can do it with Rule Engine node. Use LIKE operator and wildcard before and after key word.

... LIKE "*yellow*" => "tree"

Br,
Ivan

3 Likes

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