Help with removing files

i have a directory that have files that contains word "spam", how can i remove all those files which have word spam.

This code help me in searching

find ./ -type f -exec grep -l "spam"  {} \;

How i will add removing option with it. If some one have good suggestion regarding searching and deletion, please suggest.

Try:

find . -name "*" -type f -exec grep -l spam {} \; -exec rm -i {} \;
find . -type f -exec grep -l "spam"  {} \; |xargs rm