Find location of item in a list that partially matched to a string (search list by partial match)
Can't find a good way of doing this task.Let's say I have this:list = {"big apple", "big orange", "big pear"};
string = "orange";
How do I find a locat...