File Text Search & Replace Utility
As a VB, JScript, COM, PHP, SQL, and PHP Programmer, I am always faced with that ugly duty of having
to open many files, each one having the same text, searching for that text in the files, replacing
that text with other text, then saving the files - one by one!
Pretty time-consuming and boring if you ask me! So, to help make this process a quick and productive
one I created a File Text Search & Replace Utility which allows you to:
- Choose multiple files.
- Perform a text search in each of those files.
- Replace that search text with replacement text.
- Save the results in each and every file chosen.
Let's say you have a web site and every HTML file on that site contains a BODY BGCOLOR attribute that
sets the background color to BLACK and you wanted to change it to WHITE. You would have to go
through every single HTML file to alter the attribute and save it accordingly.
Now, you may be saying to yourself, why not use a template and include as an #include statement in an
ASP page? Well, many web developers today only use ASP when necessary because of two major reasons:
- HTML file load faster that server-side-scripts such as ASPs.
- Search engines like HTML pages more than ASP pages(or any other dymanically created page).
So, in order to edit the HTML files you have to go through each and every one - one by one!
Not any more! I created a VB application that you can use to accomplish this task. It doesn't only
work with HTML files - it works with any text files.
Download the application by clicking HERE!
|