A
ashamishra
I have two lists, first list is a fixed set of strings and has about 16
elements. The second list has zero or more occurences of the string
from the first list.
I would like to counf the number of occurences of each string from th
second list and report it against the first.
e.g.
First List contains
aat
activity
admin
als
cm
The second list contains
aat
aat
admin
admin
admin
admin
cm
I want the result to be
aat 2
activity 0
admin 4
als 0
cm 1
Thanks for help
elements. The second list has zero or more occurences of the string
from the first list.
I would like to counf the number of occurences of each string from th
second list and report it against the first.
e.g.
First List contains
aat
activity
admin
als
cm
The second list contains
aat
aat
admin
admin
admin
admin
cm
I want the result to be
aat 2
activity 0
admin 4
als 0
cm 1
Thanks for help