Imagine if there are two lists and the two lists have some similar items.
i want a third list where any items shared between the first two are removed
so list1.txt:
apple
pear
bus
list2.txt:
apple
pear
output:
bus
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could do it like this:
Lets say we have the following files:
list1.txt
list2.txt
Then the output would look like this: (
print_r($not_shared))