Hypothetically I have two lists:
List 1 (Name: Links)
List 2 (Name: Bad Word Filter)
-----------------------
In reality my two lists have hundreds of lines each. How would I go about filtering "List 1" to remove any lines that contain lines from "List 2"?
The result I wish to be left with in this example is:
List
List 1 (Name: Links)
Код:
google.com/a1
google.com/a2
google.com/a3
ebay.com/a4
ebay.com/a5
ebay.com/a6
Код:
a2
a3
a4
In reality my two lists have hundreds of lines each. How would I go about filtering "List 1" to remove any lines that contain lines from "List 2"?
The result I wish to be left with in this example is:
List
Код:
google.com/a1
ebay.com/a5
ebay.com/a6
Последнее редактирование: