So I have a list that looks something like the following:
{"Apples Oranges Canada", "Fruit Apples US", "Food Something US", "Another Word Japan"}
How can I count how many times each country is mentioned in the list and return an integer? So Canada is mentioned once (1), US is mentioned twice (2) and Japan is mentioned once (1).
Please note that the country will always be the last word in the list's element and I do not know what specific countries are in the list.
Thank you