Hi everyone,
I have two strings, e.g. A = "apples,banana,orange" and B = "love,ignore,hate"
I want to ask which number the word "banana" is in A and fetch that substring from B (here: "ignore")
"Find" seems to give me the number of letters at which my substring begins, whereas "tokenAt" would let me fetch the entire substring, if I had its number.
Can someone help out with the correct expression?