Regex is probably better suited to your needs. Find & replace works too, ultimately your own choice.
A regex filter equal to:
(\`|\~|\!|\@|\#|\$|\%|\^|\&|\*|\(|\)|\+|\=|\[|\{|\]|\}|\||\\|\'|\<|\,|\.|\>|\?|\/|\""|\;|\:|\s)
…filters out all of those characters. I use Regex when there’s a lot of restrictions on input.