Hello, I’m doing a master in business analytics and big data and I’m quite new in KNIME. I would like to know how to remove the entire “adventure - works” in the row. I need to make a new field called “username” removing also the “/” thank you in advance.
¡Hi Bruno! Thank you for your answer. Yes, I meant “\ ”. Also, yes. Now I’m trying with the String Manipulation, but I am not sure how the nomenclature works. Trying to figure out. Thank you so much!
It first looks for the index (=position) of the last backslash character in the string. The +1 increases the index to also remove the backslash.
Then it takes the substring starting from the index until the end of the string.
What you’re possibly missing: The backslash is usually used as escape character for meta characters (e.g. \n for a newline), so to interpret it literally, you need to escape it: \\ will be interpreted as single \.