String Node how to remove some symbols from String Syntax

Hello,
could you please help me, which option and syntax I have to use in Node STRING MANIPULATION, in order to from original cell (String) that is “’(+) Market Laundry Additives” remove this " '(+) Market " to get this “Laundry Additives” - this will change for example other group of cells in the same column include
'(+) Market Fabric Finisher just need to remove only this '(+) Market from each cell.
Thank you so much!

Hi @Averin7777 , you can try:
replace($your column$, "'(+) Market ", "")

2 Likes

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