At the moment I am running over a dictionary so that I can fill missing values in a table based on the stored keys within it. The problem is that my table has more values (keys) than the ones stored in the dictionary. In some cases the information in my table is similar to the a certain key in the Dictionary and i was wondering if it is possible to use a wildcard to retrieve the items. Example below:
Example records in dictionary:
- Mercedes (key) car (item)
- Kawasaki (key) motor (item)
Lets assume my table has the following entry:
- Merc (key) but is missing the item, which should be "car" in this case.
Is it possible to make this happen? I am sorry if the example is bad, but I hope any of you can help me.
I found several articles on the topic:
Thank you in advance!