If I have a list:
List = {Henry(1,2), Robert(3,4), John( . ,6), Kai(13, . ) };
But the position of names is always different for different tables,
List = {Henry(1,2), Robert(3,4), Kai(13, . ), John( . ,6) };
and sometimes certain names are missing too.
List = {Henry(1,2), Robert(3,4) };
I know we can use Contains(List, List[1]) but that way, we consider the position of values in a list. I want to know of there is any way I can search for strings like, "Henry" and extract (1,2) for Henry, and save 1 as one variable and 2 as another. Thank you