Is there a command which searched a "delimitered" string and returns the position of another string?
NameList = "Jack, John, Peter, Mary, Sue"
FindMe = "Mary"
Delimiter = ","
Pos = Find_Position(NameList, FindMe , Delimiter )
It should return 4.
NameList = "Jack, John, Peter, Mary, Sue"
FindMe = "Mary"
Delimiter = ","
Pos = Find_Position(NameList, FindMe , Delimiter )
It should return 4.