Hey,
I have an array (of strings) which I’ve created from a scraped data table.
Within this array, I have a couple of entries I want to remove, however, these all depend on key words within each item.
I have a second array which contains key words as to what should be removed. How do I remove the entries from array 1 if matching key words in array 2?
Example:
Array1 is:
Upholstery - Smooth Finish Leather - Black
Adaptive Air Suspension including Porsche Active Suspension Management - PASM
ParkAssist Including Surround View
Array2 is:
Upholstery
Result:
Adaptive Air Suspension including Porsche Active Suspension Management - PASM
ParkAssist Including Surround View
Thanks for your help.