This is quite easy to do with the CTRL + F option if it's just one word, but if I need the same thing for 40 or 50 words, what are my options?
If the software you're using supports finding by
regex, then you might use a search pattern like:
\b(Word1|Word2|Word3)\bSyntax will vary by implementation, but most good text editors can do some variant of the above (
Sublime Text is excellent, if you're in the market for a modern, but sensibly-engineered text editor).
There are also browser extensions that let you do this, but I wouldn't risk messing with them.
Finally, it
looks like Word (which I haven't touched in a long time) has some kind of regex implementation hiding behind the "Use wildcards" option, so you may be able to find the right expression for that.