MATLAB: Find indexes of string elements inside another string

indexingMATLABstrcmpstrings

Hello
I have two strings like:
A=["a" "b" "c" "d" "e" "f" "g"]
B=["b" "d" "f" "a"]
How can I know that elements in B inside A is B_index=[2 4 6 1]?
Thanks for helping!

Best Answer

[~, B_index] = ismember(B,A)
Related Question