Hi,
i need to remove swear words from a .txt file based on strings on a keyword.txt file.
Example:
Input.txt contains:
We go too the zoo.
Whats the weather today noob?
Let me be stupid.
Why is it raining?
Keyword.txt contains:
stupid
noob
I want to filter out all lines that match if a keyword (line by line) in the keyboard.txt
So result.txt would be:
We go too the zoo.
Why is it raining?
Could anyone help me out?