I have 2 arrays containing string A and B. I want to find all the strings A matches with B. Let's say:
A = ['Battery mAh', 'Ram', 'Camera', 'Screen', 'Storage(GB)']
B = ['battery', 'ram', 'storage', 'Processor']
Output array should be follwoing:
output = ['Battery mAh', 'Ram', 'Storage(GB)']