This is a my data (A).
keyword
[1] shoes
[2] childrenshoes
[3] nikeshoes
[4] sportsshiirts
[5] nikeshirts
[6] shirts
...
Also, that is another data (B). It is a reference data.
keyword value
[1] shoes 1
[2] shirts 2
...
I need to match this dataset.
So, I want to that results.
keyword vlaue
[1] shoes 1
[2] childrenshoes 1 (because, this keyword include the 'shoes')
[3] nikeshoes 1 (because, this keyword include the 'shoes')
[4] sportsshiirts 2 (because, this keyword include the 'shirts')
[5] nikeshirts 2 (because, this keyword include the 'shirts')
[6] shirts 2
...
If I utilize the 'merge', I colud not match this dataset. This is because keywords in data(B) is not perfectly match with data in data(A).
I can handle this one by one by using regexpr() or gregexpr(). However, I have a lot of refernece in data (B)
So, How can I handle this problem?
