Create a basic filtering program that takes csv inputs like the below, but up millions of entries in the list.
Input and output may be done via what ever form is easiest for you.
Needs to accept input for a given list of words or phrases.
Needs to delete the entire entry for all entries that contain said word or phrase.
Example.
Input “for” with the following list.
[taffeta cocktail dresses],91,73,1.08,3,Yes
[maternity clothes new orleans],91,91,1.16,2,Yes
[white tulle flower girl dresses],36,16,1.10,2,Yes
[kid car seats],73,58,0.94,1,Yes
[easy piano for beginners],22,12,1.55,1,Yes
[boden maternity clothes],110,73,0.57,2,Yes
[musical notes for songs],73,22,0.10,3,Yes
[hip maternity wear],110,91,1.12,2,Yes
[amy grant sheet music],58,46,0.29,3,Yes
[promo code for motherhood maternity],91,91,0.39,3,Yes
Output Should be
[taffeta cocktail dresses],91,73,1.08,3,Yes
[maternity clothes new orleans],91,91,1.16,2,Yes
[white tulle flower girl dresses],36,16,1.10,2,Yes
[kid car seats],73,58,0.94,1,Yes
[boden maternity clothes],110,73,0.57,2,Yes
[hip maternity wear],110,91,1.12,2,Yes
Any language you are comfortable with is allowed.
C# is preferred.
Program should be bug free and not require additional plugins.
Preference for those who could whip it out in the next few hours.