| > If you master regular expressions, many search and replace
> utilities (such as Handy Find and Replace) will do the job
> in the whole website quite rapidly.
For Linux/Un*x users, 'lynx -dump filename.html' allows to
easily extract text from html files ; using something like:
find . -type f -name "*.html" -exec lynx -dump {} \;
| |