I need to do a lot of various search and replaces within A LOT of static html files. One issue I'm coming up with is I'm getting matches in urls when really all I want to search/replace are text nodes.
So that makes regular expressions more difficult and most likely more error prone since you're parsing html with them now.
What's the easiest way to do search/replaces on only text nodes? I'm talking like you can be up and running within a couple minutes with no Master's required in Python-Java-Ruby-Headless-Phantom-PHP-Node-FluxCapacitor.
Please give advice as though you're speaking to a moron.
I'm on Windows 7.
What I'm looking for is something like the search/replace functionality in Notepad++. You give it a directory to start searching, it searches recursively, hitting every type of file you specify (like .html or .shtml) you tell it what to search for and what to replace it with. It runs and 10 or 15 seconds later you might have edited hundreds of files in one fell swoop. You know, dead simple stuff.
So that's what I want to do, but just searching/replacing within text nodes.